search for: beta2

Displaying 20 results from an estimated 520 matches for "beta2".

Did you mean: beta
2004 Apr 21
2
Question on CAR appendix on NLS
...oes a certain model in 3 ways: Vanilla NLS (using numerical differentation), Analytical derivatives (where the user supplies the derivatives) and analytical derivatives (using automatic differentiation). The three results agree, except for the correlation of parameter estimates : beta1 beta2 beta2 -0.1662 Numerical derivatives beta3 0.9145 -0.5407 beta2 -0.7950 Analytical derivatives beta3 0.9145 -0.9661 beta2 -0.1662 Automatic differentiation beta3 0.9145 -0.5407 Is this just a glitch of a small sample, o...
2013 Apr 03
3
Generating a bivariate joint t distribution in R
Hi, I conduct a panel data estimation and obtain estimators for two of the coefficients beta1 and beta2. R tells me the mean and covariance of the distribution of (beta1, beta2). Now I would like to find the distribution of the quotient beta1/beta2, and one way to do it is to simulate via the joint distribution (beta1, beta2), where both beta1 and beta2 follow t distribution. How could we genera...
2006 Dec 05
2
zaptel-1.4.0-beta2 Getting it to compile on Fedora Core 6 _64bit
...time I tried this, I was on fedora core 5 64bit and all went well. It's not working on this newer setup Any ideas on what I can do to make it go? THANKS! Steve ---------------------------------------- make linux26 make -C /lib/modules/2.6.18-1.2849.fc6/build SUBDIRS=/usr/src/zaptel-1.4.0-beta2 modules make[1]: Entering directory `/usr/src/kernels/2.6.18-1.2849.fc6-x86_64' CC [M] /usr/src/zaptel-1.4.0-beta2/pciradio.o In file included from /usr/src/zaptel-1.4.0-beta2/zaptel.h:34, from /usr/src/zaptel-1.4.0-beta2/pciradio.c:57: /usr/src/zaptel-1.4.0-beta2/zconfig.h:...
2012 Oct 23
1
Minimizing Computational Time
...ional 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)...
2006 Nov 08
1
Still problems with Asterisk on latest Debian
...make' needs to be **** restarted. **** make: *** [config.status] error 1 Then I type make again and it seem to work fine. I have that output as well, but i can send that if someone is interested. Then I type make install and the following happens: make[1]: Entering directory `/root/zaptel-1.4.0-beta2' make -C /lib/modules/2.6.17-2-686/build SUBDIRS=/root/zaptel-1.4.0-beta2 modules make[2]: Entering directory `/usr/src/linux-headers-2.6.17-2-686' Building modules, stage 2. MODPOST WARNING: /root/zaptel-1.4.0-beta2/xpp/xpd_fxs: 'slic_cmd_direct_write' exported twice. Previous...
2006 Jan 22
4
1.0.beta2 released
...I didn't. Hopefully I've been writing good enough code that the "1000 EUR for security hole" offer lasts for a long time. :) This release should fix the SSL parameter regeneration problem. There were two changes that were needed to fix it, but I had forgotten the other one. v1.0.beta2 2006-01-22 Timo Sirainen <tss@iki.fi> + Added SQLite support. Patch by Jakob Hirsch. + Added auth_debug_passwords setting. If it's not enabled, hide all password strings from logs. + Added mail_cache_min_mail_count and mbox_min_index_size settings which can be used to make Dove...
2009 Jul 12
2
Nonlinear Least Squares nls() programming help
...t;-read.csv(file.choose()) #select ColA.csv ColumnB.data<-read.csv(file.choose()) #select ColB.csv ColumnC.data<-read.csv(file.choose()) #select ColC.csv colA<-ColumnA.data[0:3600,] colB<-ColumnB.data[0:3600,] colC<-ColumnC.data[0:3600,] i<-1:3600 cor.model<-nls(colC ~ exp( - beta2 * abs( colB[i] - colA[i] ) / 12 ) - ( 1 - exp( - beta2 * abs( colB[i] - colA[i] ) / 12 ) ) * exp( - beta1 / ( min( colB[i], colA[i] ) / 12 ) ) , start=list(beta1 = 0.37, beta2 = 0.06), trace = T, control=nls.control(minFactor=1/4096) , alg="port", lower=list(beta1=0.35,beta2=0.05)) 0...
2008 Dec 03
1
hypergeometric
...ric but not really sure what it means. I would like to evaluate the hypergeometric function as follows: F((2*alpha+1)/2, (2*alpha+2)/2 , alpha+1/2, betasq/etasq). I'm not sure which function should be used- either phyper or qhyper or dhyper Where alpha <- .75; beta1 <- 7 ; beta2 <- 5.5; etasq <- ((beta1+beta2)/(2*beta1*beta2*(1-rho))) ^2 betasq <- ((beta1-beta2)^2+4*beta1*beta2*rho)/(4*beta1^2*beta2^2*(1-rho)^2) Thank you so much for your help. [[alternative HTML version deleted]]
2006 Oct 17
4
if statement error
Hi List, I was not able to make this work. I know it is a simple one, sorry to bother. Give me some hints pls. Thanks! Jen if(length(real.d)>=30 && length(real.b)>=30 && beta1*beta2*theta1*theta2>0 ) { r <- 1; corr <- 1; } real.d and real.b are two vectors, beta1,beta2,theta1,and theta2 are constants. The error occurred like this: Error in if (length(real.d) >= 30 && length(real.b) >= 30 && beta1 * beta2 * : missing value where T...
2013 Mar 11
2
vertical lines in R plot
...al 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="Dose&qu...
2010 Mar 25
0
help with breaking loops used to fit covariates in nlme model building procedure
Dear All I'm attempting to speed up my model building procedure, but need some help with the loops I've created...please bear with me through the explanation! My basic model call is something like: m0sulf.nlme<-nlme(conc~beta0*exp(-beta1*day)+beta2*exp(-beta3*day), data=m0sulf, fixed=(beta0+beta1+beta2+beta3~1), random=pdDiag(beta0+beta1+beta2+beta3~1), start=c(beta0=-300,beta1=15, beta2=300,beta3=0.5), ) In order to updat...
2012 Oct 17
1
Random Forest for multiple categorical variables
...2 12 2 12 2 12 alpha beta1 3 13 3 13 3 13 3 13 3 13 alpha beta1 4 14 4 14 4 14 4 14 4 14 alpha beta1 5 15 5 15 5 15 5 15 5 15 alpha beta1 6 16 6 16 6 16 6 16 6 16 alpha beta2 7 17 7 17 7 17 7 17 7 17 alpha beta2 8 18 8 18 8 18 8 18 8 18 alpha beta2 9 19 9 19 9 19 9 19 9 19 alpha beta2 10 20 10 20 10 20 10 20 10 20 alpha beta2 I want to use the randomForest classificat...
2006 Feb 03
0
rquotad (NFS) quota plugin
...f an NFS mount is apparently quite a hassle, as it means reading /etc/mtab or /proc/self/mounts. Yuck. -- Thomas Wouters <thomas at xs4all.net> Hi! I'm a .signature virus! copy me into your .signature file to help me spread! -------------- next part -------------- diff -crN dovecot-1.0.beta2/src/lib/failures.c dovecot-1.0.beta2.mail.location+quota/src/lib/failures.c *** dovecot-1.0.beta2/src/lib/failures.c Tue Jan 31 16:18:19 2006 --- dovecot-1.0.beta2.mail.location+quota/src/lib/failures.c Tue Jan 31 16:19:08 2006 *************** *** 219,224 **** --- 219,229 ---- va_end(args); }...
2004 Apr 16
5
Non-Linear Regression (Cobb-Douglas and C.E.S)
Dear all, For estimating Cobb-Douglad production Function [ Y = ALPHA * (L^(BETA1)) * (K^(BETA2)) ], i want to use nls function (without linearizing it). But how can i get initial values? ------------------------------------ > options(prompt=" R> " ) R> Y <- c(59.6, 63.9, 73.5, 75.6, 77.3, 82.8, 83.6, 84.9, 90.3, 80.5, 73.5, 60.3, 58.2, 64.4, 75.4, 85, 92.7, 85.4,...
2006 Dec 26
3
I cant install zaptel drivers in suse 10.1
Hi, All How do I install Zaptel drivers on a system running Suse? Make results: grep: /lib/modules/2.6.16.13-4-smp/build/include/linux/autoconf.h: No existe el fichero o el directorio make[1]: Entering directory /usr/src/asterisk/zaptel/zaptel-1.4.0-beta2 make -C /lib/modules/2.6.16.13-4-smp/build SUBDIRS=/usr/src/asterisk/zaptel/zaptel-1.4.0-beta2 modules make[2]: Entering directory /usr/src/linux-2.6.16.13-4-obj/i386/smp make[2]: *** No hay ninguna regla para construir el objetivo "modules". Altc. Make[2]: Leaving directory /usr/src/li...
2009 May 11
0
Asterisk 1.6.2.0-beta2 Now Available
The Asterisk Development Team is pleased to announce the second beta of Asterisk 1.6.2.0. Asterisk-1.6.2.0-beta2 is available for immediate download at http://downloads.digium.com/pub/asterisk/ This release merges in changes to the device state code which caused a performance regression in Asterisk 1.6.1 and 1.6.2. The result of this device state code review is that performance has been positively affected w...
2009 May 11
0
Asterisk 1.6.2.0-beta2 Now Available
The Asterisk Development Team is pleased to announce the second beta of Asterisk 1.6.2.0. Asterisk-1.6.2.0-beta2 is available for immediate download at http://downloads.digium.com/pub/asterisk/ This release merges in changes to the device state code which caused a performance regression in Asterisk 1.6.1 and 1.6.2. The result of this device state code review is that performance has been positively affected w...
2010 Jan 31
1
v2.0.beta2 released
http://dovecot.org/releases/2.0/beta/dovecot-2.0.beta2.tar.gz http://dovecot.org/releases/2.0/beta/dovecot-2.0.beta2.tar.gz.sig I tried to keep the configuration and APIs compatible with v2.0.beta1, but unfortunately there were a few things that really had to be changed: 1. passdbs and userdbs have now a separate "driver" setting inside the...
2010 Jan 31
1
v2.0.beta2 released
http://dovecot.org/releases/2.0/beta/dovecot-2.0.beta2.tar.gz http://dovecot.org/releases/2.0/beta/dovecot-2.0.beta2.tar.gz.sig I tried to keep the configuration and APIs compatible with v2.0.beta1, but unfortunately there were a few things that really had to be changed: 1. passdbs and userdbs have now a separate "driver" setting inside the...
2013 Mar 30
2
Icecast 2.4 beta2 release
This is to announce the release of Icecast 2.4 beta2 (aka 2.3.99.2). We've landed some important features and we're looking forward to testing and feedback. As this is a beta release please discuss it on the icecast-dev mailing list. (Please do NOT cross-post to both lists, do not reply to the icecast mailing list). New features - Now...