search for: alpha2

Displaying 20 results from an estimated 149 matches for "alpha2".

Did you mean: alpha
2012 Oct 23
1
Minimizing Computational Time
...e the computational time of the main programme. For instance, is there any smart way for the following programme that will lessen time? --------------------------------------------------------------------------------------------------------------- dose<-seq(0,10,.5) alpha1<--4 beta1<-0.5 alpha2<--6 beta2<--.7 psi1<-function(alpha1,beta1,alpha2,beta2,d){ z1<-exp(alpha1+beta1*d) z2<-exp(alpha2+beta2*d) z1/((1+z1)*(1+z2)) } psi2<-function(alpha2,beta2,d) { z2<-exp(alpha2+beta2*d) z2/(1+z2)...
2008 Dec 02
3
date operations
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20081202/10f66fc6/attachment.pl>
2011 Sep 16
2
v2.1.alpha2 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha2.tar.gz http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha2.tar.gz.sig This is actually looking rather stable. I'm still calling it "alpha" in case I think of doing some more API changes, but I think the next one will be called "beta1", hopefully soon followed by "...
2011 Sep 16
2
v2.1.alpha2 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha2.tar.gz http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha2.tar.gz.sig This is actually looking rather stable. I'm still calling it "alpha" in case I think of doing some more API changes, but I think the next one will be called "beta1", hopefully soon followed by "...
2005 Sep 14
2
SSL/TLS stopped working in 1.0 alpha2
I have both 1.0 alpha1 and alpha2 installed on my test mail server. SSL/TLS does not work on alpha2. I'm using the same config file for both. No errrors in dovecot.log either. Is there a way to increase debugging info without recompiling?
2013 Mar 11
2
vertical lines in R plot
...vertical lines at d=c(5.0,5.5,6) and they should go till p=c(0.12,0.60,0.20) . I haven't found any way out, though made several attempts. Please run the following commands first if you are interested in! ####################################################### psi1<-function(alpha1,beta1,alpha2,beta2,d){ exp(alpha1+beta1*d)/((1+exp(alpha1+beta1*d))*(1+exp(alpha2+beta2*d))) } alpha1<--3.5 beta1<-1 alpha2<--6 beta2<-0.72 d<-seq(0.5,10,0.01) plot(d,psi1(alpha1,beta1,alpha2,beta2,d),type="l",pch=18, ylim=c(0,1), xlab="D...
2005 Feb 27
2
Help with constrained optimization
Dear all, I need an advice in the following problem. I have to maximize two functions of the form f1(x)=f(y1,x,alpha1,beta1) and f2(x)=(y2,x,alpha2,beta2), the maximization is with respect to alpha1, alpha2, beta1, beta2. I can maximize each function separately using nlm. The problem is that I have to add the constraint of the form g(alpha1)=g(alpha2). The total number of parameters is approximately 30. What is the best way to do it? I a...
2008 Oct 05
4
v1.2.alpha2 released
http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha2.tar.gz http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha2.tar.gz.sig Mainly the same fixes as in v1.1.3 -> v1.1.4 plus some more v1.2-specific fixes. Not many people have been testing v1.2 releases. Wonder if there's something I could do to improve that. I guess v1.2 is kind of missi...
2007 Aug 07
1
v1.1.alpha2 released
http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha2.tar.gz http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha2.tar.gz.sig Hopefully the next release can be v1.1.beta1. I'm not aware of any major problems and I think I'm pretty much done with new features (except for dbox). The largest changes since alpha1: * Removed THREAD indexing....
2009 Oct 23
3
v2.0.alpha2 released
http://dovecot.org/releases/2.0/alpha/dovecot-2.0.alpha2.tar.gz http://dovecot.org/releases/2.0/alpha/dovecot-2.0.alpha2.tar.gz.sig Changes since alpha1: - All debug messages are now logged to debug log (debug_log_path setting, defaults to info_log_path). Patch by Pascal Volk. - Added support for SORT=DISPLAY IMAP extension. - Added doveadm who comm...
2005 Sep 14
1
Lost transaction log file in alpha2
I had run alpha1 pretty uneventfully for several weeks. I upgraded to alpha2 a couple of days ago and have since suffered two incidents of "Lost transaction log", resulting in the client being unable to access the mailbox until I "rm dovecot.index.log*" Sep 14 10:48:35 caddy dovecot: imap(jberry): Lost transaction log file /Users/jberry/Maildir/do...
2009 Jul 10
2
IF STATEMENTS
Hello, I am working on using if statements. What is the error message telling me here and how do I correct for it? I have tried various combinations of quotes. Thank you. Sincerely, Mary A. Marion #Find critical values crit<-function(n,alpha,type) { if (type==twoSided) { alpha2=alpha/2 tL<-qt(alpha2,n-1) tU<-qt(1-alpha2,n-1) } if (type==Lower) { tL<- -9999 tU<-qt(1-alpha,n-1) } if (type==Upper) { tL<-qt(alpha,n-1) tU<- 9999 } criticalValues<-c(tL,tU) round(criticalValues,3) } crit(n=50,alpha=.05,type=twoSided) Error in crit(n = 50, alpha = 0.05,...
2009 Jul 01
2
Difficulty in calculating MLE through NLM
Hi R-friends, Attached is the SAS XPORT file that I have imported into R using following code library(foreign) mydata<-read.xport("C:\\ctf.xpt") print(mydata) I am trying to maximize logL in order to find Maximum Likelihood Estimate (MLE) of 5 parameters (alpha1, beta1, alpha2, beta2, p) using NLM function in R as follows. # Defining Log likelihood - In the function it is noted as logL > library(stats) > loglike1<- function(x) + { + alpha1<-x[1] + beta1<-x[2] + alpha2<-x[3] + beta2<-x[4] + p<-x[5] + n<- mydata[3] + e<-mydata[4] + f1<- ((...
2005 Sep 23
1
v1.0.alpha2, virtual domain authentication
Bonjour a tous, In Dovecot v1.0.alpha2, authentication according domain seems not working passdb = passwd-file /etc/vmail/test.%d %d is not resolved as "domain.name" I browsed on mailing list post and found the problem already reported... What I can't figure out is the answer about it... > Timo Sirainen tss...
2017 Jun 13
3
understanding I() in lmer formula
Is there a difference between I(x*y) and I(y*x) ? I have a call to lmer that results in this complaint: Error in is.alpha2.subordinate * ~z.min.co.res : non-numeric argument to binary operator when I change this line: I(is.alpha2.subordinate*z.min.co.res)+ to this: I(z.min.co.res*is.alpha2.subordinate)+ the complaint goes away. I'd like to understand why.
2005 Mar 02
1
Warning: number of items to replace is not a multiple of replacement length
....039047537 t<-tt-20 h.t<-a2+a3*exp(b3*t) S.t<-exp(-a2*t+a3/b3*(1-exp(b3*t))) return(S.t*h.t) } #=========================== trans<-function (age) { indic=c(2,2) lage=log(age) xpars=c(2.1862908,7.5528077,8.5806697,2.3319461,8.8959507,9.1380187,0.3720293) beta<-c(0,0) alpha1<-c(0,0) alpha2<-c(0,0) beta[1]<-xpars[1] alpha1[1]<-xpars[2] alpha2[1]<-xpars[3] beta[2]<-xpars[4] alpha1[2]<-xpars[5] alpha2[2]<-xpars[6] corr<-matrix(rep(0,4),nc=2) corr[1,1]=1 corr[2,2]=1 corr[1,2]=xpars[7] corr[2,1]=corr[1,2] LLK<-0 L<-c(0,0) R<-c(0,0) for(j in 1:2){ if(i...
2008 Jan 04
2
R2WinBUGS sending variables as factors
...CSIRO Marine and Atmospheric Research ph +62 3 6232 5182 mb +61 429 32 5182 model { #Centre variables mSeaW <- mean(SeaW[]) s_dSeaW <- sd(SeaW[]) #normalise Variables nSeaWiFS <- mSeaW/s_dSeaW for(i in 1:N) { log(lambda[i]) <- delta0 + alpha1 * Month[i] + alpha2 * Lat[i] + beta1 * (SeaW[i] - nSeaW) logit(p[i]) <- gamma0 mu[i, 1] <- 0 mu[i, 2] <- lambda[i] mu.i[i] <- mu[i, index[i]] index[i] ~ dcat(theta[i, 1:2]) theta[i, 1] <- p[i] theta[i, 2] <- 1 - p[i] # mixture YFTCPUE[i] ~ dpois(mu.i[i]) }...
2005 Sep 19
1
Is Alpha2 slower than Alpha1?
I changed servers at the same time as changing from Alpha1 to Alpha2 but I'm on a faster server so it should be faster. But it seems slower especially deleting server side messages. Using mbox . Anyone else seeing tis?
2005 Sep 20
1
1.0-alpha2: assertion failed
Hi, I am experiencing some problems with Dovecot 1.0-alpha2: --8<-- Sep 20 13:54:45 mailgateway dovecot: imap(support): file mail-index-view-sync.c: line 168 (mail_index_view_sync_begin): assertion failed: (!view->syncing) Sep 20 13:54:45 mailgateway dovecot: child 27047 (imap) killed with signal 6 --8<-- I tried to make it core as described in htt...
2005 Sep 22
1
Debian packages of alpha2?
Is anyone maintaining Debian packages of alpha2? The official packages aren't even up to -stable yet. -Ben