search for: kt

Displaying 20 results from an estimated 351 matches for "kt".

Did you mean: pkt
2009 Apr 01
2
Plotting multiple ablines
I really want to do this: abline( a=tan(-kT*pi/180), b=kY-tan(-kT*pi/180)*kX ) where kX,kY and kT are vectors of equal length. But I can't do that with abline unless I use a loop, and I haven't figured out the least unelegant way of writing the loop yet. So is there a way to do this without a loop? Or if I am to resort to the loop,...
2012 Jun 09
1
Inf and NA
Hi all, I have a csv matrix "KT.csv" and it has Inf and NA I want to calculate the mean of each row so I use rowMeans(KT,na.rm = TRUE) but with this Inf cannot be omminted. I?m trying to use before running rowMeans(KT,na.rm = TRUE) KT<-range(KT,finite=TRUE) but it doesn?t works... Do you know a simple way to ommit I...
2002 Apr 01
1
fft fails for lengths 392, 588, 968, 980 .... (PR#1429)
R 1.4.1, Linux and Windows for(i in 1:1000) { X <- rnorm(i) XX <- fft(fft(X), inverse=T)/i if(max(Mod(XX-X)) > 1e-10) print(i) } [1] 392 [1] 588 [1] 968 [1] 980 and I then get a segfault during gc(). The answers are way off, with imaginary parts 1e10 or more. These numbers are all multiples of 7^2 or 11^2. (Based on a report to R-help Date: Thu, 28 Mar 2002 09:37:34
2017 Feb 17
11
[Bug 2680] New: Regression in server-sig-algs offer in 7.4p1 (Deprecation of SHA1 is not being enforced)
...c index a30dabe..13bb9aa 100644 --- a/kex.c +++ b/kex.c @@ -348,7 +348,7 @@ kex_send_ext_info(struct ssh *ssh) int r; char *algs; - if ((algs = sshkey_alg_list(0, 1, ',')) == NULL) + if ((algs = sshkey_alg_list(0, 1, 1, ',')) == NULL) return SSH_ERR_ALLOC_FAIL; if ((r = sshpkt_start(ssh, SSH2_MSG_EXT_INFO)) != 0 || (r = sshpkt_put_u32(ssh, 1)) != 0 || diff --git a/ssh.c b/ssh.c index ee0b16d..edef335 100644 --- a/ssh.c +++ b/ssh.c @@ -684,11 +684,11 @@ main(int ac, char **av) else if (strcmp(optarg, "kex") == 0) cp = kex_alg_list('\n'); else...
2010 Feb 16
2
HELP on Non-Linera Mixed-Effect model
Hi, I'm trying to fit nonlinear mixed effects model using nlme function but getting an error message. Here is what I have: fitted_model = nlme(scores~spline(b1,b2,b3,kt,time), fixed = list(b1~1, b2~1, b3~1, kt~1), random = b1+b2+b3~1, groups= ~id, data = sdat, start = c(b1=3.5,b2=2,b3=.60,kt=3.5),verbose=T) Error: Error in spline(b1, b2, b3, kt, time) : invalid interpolation method In addition: Warning me...
2009 Dec 06
2
Error in eval(expr, envir, enclos) : object 'N' not found
...still getting this error. Thanks, -Hans ::CODE:: require(odesolve); ###Params for running script ## iniT=1E3; iniN=10; iniM=0; iniC=1E3; num_days = 30; interval_size = .1; OF_prcnt = .10; model <- function(t, state, pars) { with (as.list(c(state, pars)), { dT=(a*T-a*T*b*T) - (c1*N*T) - (Kt*M*T) dN=a1 - (f*N) + g * (T/(h+T)) * N - (p * N * T) - (Kn * M * N) dC=a2 - (beta * C) - (Kc * M * C) dM= -(gamma) * M + Vm return(list(c(dT,dN,dC,dM))) }) } model2 <- function(t, state2, pars2) { with (as.list(c(state2, pars2)), { dT=(a*T-a*T*b*T) - (c1*N*T) - (Kt*M*T) dN=a1 -...
2018 Apr 10
3
withheld caller id
>>> > exten => _9X.,1,Dial(Dongle/dongle800/#31#${EXTEN:1},120,KT) My suggestion would be to add a pause or two before dialing the phone number exten => _9X.,1,Dial(Dongle/dongle800/#31#ww${EXTEN:1},120,KT) D(digits): After the called party answers, send digits as a DTMF stream, then connect the call to the originating channel (you can also use 'w'...
2010 Jan 29
1
Plotmath: suprscript on scalable delimiter?
...put a superscript on a scalable delimiter? I want to put 'b' as the power of the expression in the following plot: t <- 1:25 K <- 0.2 y <- ((1-exp(-K*t))/(1-exp(-K*t)*exp(K)))^3 plot(t,y,"l",main="K=0.2, b=3") text(15,5,expression(bgroup("(",frac(1-e^-Kt,1-e^-Kt*e^K),")"))) Plotmath examples in demo(plotmath) do not include this. I've tried a few things to no avail and I did an RSiteSearch("superscript delimiter") with zero results. Thx Rub?n ________________________________________________________________________________...
2005 Jul 25
1
removing (hopefully) unneeded access to $HOME
...folders are found in /%h/mail. Now, I notice that when a user is accessing her INBOX, the imap process cwd's to the user's home, which I'd like to prevent as much as possible. E.g., when the user's client is only watching INBOX, I still see: [root at tock:~]$ lsof | grep home_kt imap 6422 kt cwd DIR 0,17 12288 7602177 /home/kt (other.host:/home/kt) Is there a way I can tweak the dovecot settings so that this cwd isn't holding open the NFS mount? Many thanks, Abe Smith -- # Abraham David Smith, <adsmith at math.duke.edu> # # htt...
2005 Mar 16
1
Code to replace nested for loops
...r-loops to compute the observed proportions # correct at each level of theta for each item and store them in # the appropriate row and column locations of the 'opt.mat'. system.time( for(j in 1:ni) {for (k in 1:ntheta) { n.theta.cat <- 0 sum.theta.cat <- 0 kt <- theta.vec[k] for(i in 1:nr) { it <- x.mat[i,nc] if(identical(all.equal(kt,it),TRUE)) n.theta.cat <- n.theta.cat + 1 if(identical(all.equal(kt,it),TRUE)) sum.theta.cat <- sum.theta.cat + x.mat[i,j] if(n.theta.cat > 0) opt.mat...
2012 Jan 13
2
Rozważania odnośnie storage?
Cze??. Aktualnie mam do czynienia z klastrem pocztowym, w kt?rym pliki wiadomo?ci pocztowych u?ytkownik?w s? przechowywane na raid software-owym udost?pnianym po NFS. Serwer?w NFS jest kilka, ka?dy udost?pnia podzbi?r wiadomo?ci dla odpowiedniego serwera z postfix-em, kt?ry jest klientem NFS. Dane z jakiego s...
2013 Aug 06
6
[PATCH V12 0/5] Paravirtualized ticket spinlocks for KVM host
This series forms the kvm host part of paravirtual spinlock based against kvm tree. Please refer https://lkml.org/lkml/2013/8/6/178 for kvm guest part of the series. Please note that: kvm uapi: Add KICK_CPU and PV_UNHALT definition to uapi is a common patch for both guest and host. Srivatsa Vaddagiri (1): kvm hypervisor : Add a hypercall to KVM hypervisor to support pv-ticketlocks
2013 Aug 06
6
[PATCH V12 0/5] Paravirtualized ticket spinlocks for KVM host
This series forms the kvm host part of paravirtual spinlock based against kvm tree. Please refer https://lkml.org/lkml/2013/8/6/178 for kvm guest part of the series. Please note that: kvm uapi: Add KICK_CPU and PV_UNHALT definition to uapi is a common patch for both guest and host. Srivatsa Vaddagiri (1): kvm hypervisor : Add a hypercall to KVM hypervisor to support pv-ticketlocks
2017 Jan 26
4
Server accepts key: pkalg rsa-sha2-512 vs ssh-rsa
Hi, I'm doing some test with a pkcs11 token that can only sign short messages. When connecting to one server, that reports pkalg rsa-sha2-512 blen 151, it fails to sign the pubkey because it is 83 bytes long. (sshd: OpenSSH_7.3p1) A older server that reports pkalg ssh-rsa blen 151, works perfectly as the pubkey signature required is only 35 bytes long. (sshd: OpenSSH_6.7p1) I am not sure
2008 Mar 31
1
Reorder the x-axis using lattice
...11 Kvinnor MH 2-utskrivning 77.22222 12 Kvinnor PF 2-utskrivning 44.74280 13 Kvinnor RE 2-utskrivning 68.95425 14 Kvinnor RP 2-utskrivning 39.90385 15 Kvinnor SF 2-utskrivning 64.62264 16 Kvinnor VT 2-utskrivning 51.97531 bwplot(Medelvärde ~ Skalor| Kön , kt, panel = "panel.superpose", groups = Tillfälle,scales = list(x = list(rot = 45),cex=0.7,alternating=2), panel.groups = "panel.linejoin",lty=c(1:3),lwd=3,col=c("steelblue","grey50","green4"), ylab = list(label = "skalpoäng (...
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi, The main (and probably the only) use case of this PAM module is to let sudo authenticate users via their ssh-agent, therefore without having to type any password and without being tempted to use the NOPASSWD sudo option for such convenience. The principle is originally implemented by an existing module [0][1] and many pages that explain how to use it for such purpose can be found online.
2010 Nov 27
1
How to add multiple ablines
...thgrowth) I got it done adding single abline. How to add more ablines on the same diagram? I found following thread, applying "mapply" command; Plotting multiple ablines http://www.mail-archive.com/r-help@r-project.org/msg51543.html mapply(abline, (converge$kY + tan((90-converge$kT) * pi / 180)*(-converge$kX)), tan((90-converge$kT) * pi / 180)) But couldn't resolve it. Substituting "converge" with toothgrowth" didn't work? I also look at ?mapply. Pls help. I don't have parameter of other ablines to be added. This is only a learning exampl...
2005 Jan 12
1
Bug report for test-60
I got the following with mbox and test-60: Jan 12 20:11:17 ser dovecot: IMAP(juergen): file mail-index-transaction.c: line 57 (mail_keyword_transaction_free): assertion failed: (kt->keywords->kt == NULL) Jan 12 20:11:17 ser dovecot: child 24762 (imap) killed with signal 6 but only if I try to move/copy a larger number of messages, around >30, from on folder to another. MUA: mutt, no other problems so far. Greetings Juergen -- Juergen Daubert | mailto:jue at...
2017 May 10
2
No doveadm-save in wiki2?
> On May 10, 2017, at 9:50 AM, Sami Ketola <sami.ketola at dovecot.fi> wrote: > > >> On 9 May 2017, at 19.26, KT Walrus <kevin at my.walr.us> wrote: >> >> Is ?doveadm save? an undocumented feature? Or, just well-hidden? >> >> https://wiki2.dovecot.org/Tools/Doveadm <https://wiki2.dovecot.org/Tools/Doveadm> > > That wikipage is autogenerated from the doveadm manpage...
2018 Apr 10
2
withheld caller id
thanks a lot for the reply. i thought of that and i did try to send *exten => _9X.,1,Dial(Dongle/dongle800/#31#${EXTEN:1},120,KT)exten => _9X.,n,Hangup(${HANGUPCAUSE})* but the provider replies back that it is a wrong number. Then i inserted the sim to an ordinary mobile phone and dialed #31# and the number, then the call progressed fine and it restricted the number. What am i doing wrong in asterisk? On Tue, Apr 10, 20...