search for: pt3

Displaying 6 results from an estimated 6 matches for "pt3".

Did you mean: pt
2007 Nov 15
1
Nested SEXP functions
...timesY(SEXP X,SEXP Y); // X*Y SEXP XminusY(SEXP X,SEXP Y); // X-Y SEXP tX(SEXP X); // X^T SEXP mycholinv(SEXP V); // Use cholesky decomposition for inverse Now, what I'm noticing is that if I call each routine individually such as: pt1=XtimesY(X,beta); // X*beta pt2=Xminus(Y,pt1); // Y-X*beta pt3=tX(pt2); // (Y-X*beta)^T pt4=mycholinv(V); //V^{-1} pt5=XtimesY(pt2,pt4); // (Y-X*beta)^T V^{-1} result=XtimesY(pt5,pt2); //(y-X*beta)^T V^{-1} (y-X*beta) Then the result is correct. But if instead I want to save some lines of code, and I use: result=XtimesY(XtimesY(tX(XminusY(Y,XtimesY(X,beta))...
2011 Oct 13
3
nls: singular convergeance
...ch)/(R+const1*A+exch)) Cmin.new2 <- exp(-((trans2-trans)*(R+const1*A+exch))/V)*(((Ci*R+const1*Cd*A+Cb*exch) *exp(((trans2-trans)*(R+const1*A+exch))/V))/ (R+const1*A+exch)+((Cmin.new-Ci)*R+(const1*Cmin.new-const1*Cd)*A+(Cmin.n ew-Cb)*exch)/(R+const1*A+exch)) t.new <- t - trans2 pt3 <- exp(-(t.new*(0+const1*A+exch))/V)*(((Ci*0+const1*Cd*A+Cb*exch) *exp((t.new*(0+const1*A+exch))/V))/ (0+const1*A+exch)+((Cmin.new2-Ci)*0+(const1*Cmin.new2-const1*Cd)*A+(Cmin .new2-Cb)*exch)/(0+const1*A+exch)) res <- pt1*(t <=trans) + pt2 * ((t > trans) & (t <= trans2)...
2006 Dec 01
4
YUM conflict with RHEL 4_X86_64
Hi, everyone, I have one conflict problem when I try to install Centos YUM on RHEL 4_X 86_64. Uname -a shows: Linux PT3 2.6.9-42.0.0.0.1.ELsmp #1 SMP Sun Oct 15 15:13:57 PDT 2006 x86_64 x86_64 x86_64 GNU/Linux Yum -version shows: Repository update is listed more than once in the configuration Repository base is listed more than once in the configuration Repository contrib is listed more than once in the confi...
2005 May 03
2
Problem with Windows XP
Helo, I've a problem with a network of XP Pc's and a Samba Server. The users logs in their homes directories, and later, when they save their files a message arises saying: "the resource is not abailable". If they close the XP session and open again, normaly, they can access to their homes. In another network of Windows 98 PCs, and with the same smb.conf this not occur. I
2007 Apr 04
1
Asterisk server hangs on after only few hours again.
...not call in through PSTN line and the ppl also could not call out throught the server, there is simply engaged dial tone when you try to do so. and the only thing i can do is to restart asterisk server after some hours or one day. i am using asterisk 1.2.17 + zaptel 1.2.16 + freepbx 2.2.1. [root@pt3 ~]# tail /var/log/asterisk/full Apr 5 09:38:17 DEBUG[6351] manager.c: Manager received command 'Command' Apr 5 09:38:17 DEBUG[6351] manager.c: Manager received command 'Command' Apr 5 09:38:17 DEBUG[6351] manager.c: Manager received command 'Command' Apr 5 09:38:31 DEBUG...
2013 Oct 28
5
FreeBSD PVH guest support
...+ * + * Set some Xen global variables and prepare the environment so it is + * as similar as possible to what native FreeBSD init function expects. + */ +u_int64_t +hammer_time_xen(start_info_t *si, u_int64_t xenstack) +{ + u_int64_t physfree; + u_int64_t *PT4 = (u_int64_t *)xenstack; + u_int64_t *PT3 = (u_int64_t *)(xenstack + PAGE_SIZE); + u_int64_t *PT2 = (u_int64_t *)(xenstack + 2 * PAGE_SIZE); + int i; + + KASSERT((si != NULL && xenstack != 0), + ("invalid start_info or xenstack")); + + xen_early_printf("FreeBSD PVH running on %s\n", si->magic); + + /*...