search for: s22

Displaying 18 results from an estimated 18 matches for "s22".

Did you mean: 22
2009 Sep 19
3
Lattice: combine the same strip?
...figure 2.1 at http://lmdvr.r-forge.r-project.org/figures/figures.html. In this case, I would like to combine the the top strip, since all three pictures in the same row have the same level based on the first strip. In other words, instead of | -- S11 -- | -- S11 -- | -- S11 -- | | -- S21 -- | -- S22 -- | -- S23 -- | I would like my graph to look like | ----------------- S11 ---------------- | | -- S21 -- | -- S22 -- | -- S23 -- | In there a way I can do it? Thanks! JD [[alternative HTML version deleted]]
2003 Jul 06
1
Conditional Distribution of MVN variates
Hi Folks, Given k RVs with MVN distribution N(mu,S) (S a kxk covariance matrix), let (w.l.o.g.) X1 denote the first r of them, and X2 the last (k-r). Likewise, let mu1 and mu2 denote their respective expectations. Then, of course, the expectation of X2 given X1=x1 is mu2 + S21*inv(S22)*(x1 - mu1) and the covariance matrix of X2 given X1=x2 is S22 - S21*inv(X11)*S12 where Sij is the matrix derived from S by taking the rows corresponding to the indices of Xi and the columns corresponding to the indices of Xj, and these define the MVN conditional distribution of X2 given X1=x1...
2020 Mar 31
2
[ARM] Register pressure with -mthumb forces register reload before each call
...i %const.0, 14, $noreg :: (load 4 from constant-pool) 96B $r0 = COPY %0:tgpr 112B $r1 = COPY %1:tgpr 128B $r2 = COPY %2:tgpr 144B tBLXr 14, $noreg, %3:tgpr, <regmask $lr $d8 $d9 $d10 $d11 $d12 $d13 $d14 $d15 $q4 $q5 $q6 $q7 $r4 $r5 $r6 $r7 $r8 $r9 $r10 $r11 $s16 $s17 $s18 $s19 $s20 $s21 $s22 $s23 $s24 $s25 $s26 $s27 and 35 more...>, implicit-def dead $lr, implicit $sp, implicit $r0, implicit $r1, implicit $r2, implicit-def $sp 160B ADJCALLSTACKUP 0, 0, 14, $noreg, implicit-def dead $sp, implicit $sp 176B ADJCALLSTACKDOWN 0, 0, 14, $noreg, implicit-def dead $sp, implicit $sp 192B...
2020 Apr 07
2
[ARM] Register pressure with -mthumb forces register reload before each call
If I'm understanding what's going on in this test correctly, what's happening is: * ARMTargetLowering::LowerCall prefers indirect calls when a function is called at least 3 times in minsize * In thumb 1 (without -fno-omit-frame-pointer) we have effectively only 3 callee-saved registers (r4-r6) * The function has three arguments, so those three plus the register we need to hold the
2020 Apr 15
4
[ARM] Register pressure with -mthumb forces register reload before each call
...i %const.0, 14, $noreg :: (load 4 from constant-pool) 96B $r0 = COPY %0:tgpr 112B $r1 = COPY %1:tgpr 128B $r2 = COPY %2:tgpr 144B tBLXr 14, $noreg, %3:tgpr, <regmask $lr $d8 $d9 $d10 $d11 $d12 $d13 $d14 $d15 $q4 $q5 $q6 $q7 $r4 $r5 $r6 $r7 $r8 $r9 $r10 $r11 $s16 $s17 $s18 $s19 $s20 $s21 $s22 $s23 $s24 $s25 $s26 $s27 and 35 more...>, implicit-def dead $lr, implicit $sp, implicit $r0, implicit $r1, implicit $r2, implicit-def $sp 160B ADJCALLSTACKUP 0, 0, 14, $noreg, implicit-def dead $sp, implicit $sp 176B ADJCALLSTACKDOWN 0, 0, 14, $noreg, implicit-def dead $sp, implicit $sp 192B...
2011 Sep 21
3
Reading data in lisp format
Hi, I am trying to read the "credit.lisp" file of the Japanese credit database in UCI repository, but it is in lisp format which I do not know how to read. I have not found how to do that in the foreign library http://archive.ics.uci.edu/ml/datasets/Japanese+Credit+Screening <http://archive.ics.uci.edu/ml/datasets/Japanese+Credit+Screening> Could anyone help me? Best
2011 Apr 03
3
kernel density plot
I am using the following commands for plotting kernel density for three kinds of crops density(s22$Net_income_Total.1, bw="nrd0",adjust=1, kernel=c("gaussian"))->t plot(t, xlim=c(-30000,40000), main="Net Income Distribution", axes=F, ylim=c(0,0.00035). xlab="Value in Rupees") par(new=T) density(s33$Net_income_Total.1, bw="nrd0",adjust=1, kerne...
2004 Oct 03
3
VoiceMail without password? How?
If my extension is 22, and voice mail access number is 909, then with exten => 909,1,voicemailmain(s22) I can access voice mail 22, without number and password prompt. But, I want that every extension can access its voice mail without number and password. So, when I put exent => 909,1,voicemailmain(${calleridnum}) voicemail want only password. I want to eliminate password too, so when I put e...
2003 Jul 15
0
Multivariate regression method
...mplies complementary set of ### columns of X for the variable X2 whose conditional ### distribution (X2 | X1=x1) is to be found). iX1<-ixX(S, ... ); iX2<-!iX1; s11<-solve(S[iX1,iX1,drop=FALSE]); s12<-S[iX1,iX2,drop=FALSE]; s21<-S[iX2,iX1,drop=FALSE]; s22<-S[iX2,iX2,drop=FALSE]; mu1<-mu[,iX1,drop=FALSE]; mu2<-mu[,iX2,drop=FALSE]; Cmu <- (x1%.+%(-mu1))%*%s11%*%s12 %.+% mu2; Cvar <- s22 - s21%*%s11%*%s12; list(Cmu=Cmu,Cvar=Cvar,iX1=iX1,iX2=iX2) } ================================================================= Best wishes t...
2009 Apr 30
1
finite mixture model (2-component Weibull): plotting Weibull components?
Dear Knowledgeable R Community Members, Please excuse my ignorance, I apologize in advance if this is an easy question, but I am a bit stumped and could use a little guidance. I have a finite mixture modeling problem -- for example, a 2-component Weibull mixture -- where the components have a large overlap, and I am trying to adapt the "mclust" package which concern to normal
2012 Jun 24
0
[LLVMdev] Request for merge: GHC/ARM calling convention.
...tion as stopping the merge to head, I'm just making sure I got it right... The rest looks correct. + CCIfType<[v2f64], CCAssignToReg<[Q4, Q5]>>, + CCIfType<[f64], CCAssignToReg<[D8, D9, D10, D11]>>, + CCIfType<[f32], CCAssignToReg<[S16, S17, S18, S19, S20, S21, S22, S23]>>, Does this mean that for floating point support in GHC, you need VFP registers? I don't know much how tablegen would work in this case, but I'd expect it to break during codegen (with a horrid error message) if you try to compile that to an ARMv4-ish core. Maybe you need a...
2011 Oct 06
3
Wide to long form conversion
...3 5 S17 18 s 6 2 7 4 6 2 7 4 S18 19 s 9 4 8 5 10 4 6 3 S19 20 s 8 2 6 5 9 2 6 4 S20 21 s 6 5 5 7 6 6 5 5 S21 22 s 8 8 3 7 6 7 5 3 S22 23 s 11 4 6 7 1 1 6 4 S23 24 s 6 3 2 4 6 4 2 2 S24 25 s 4 4 6 6 2 3 4 6 S25 26 w 5 9 4 7 3 7 3 5 S26 27 w 7 6 3 5 4 1 0 4 S27 28 w...
2012 Jun 24
4
[LLVMdev] Request for merge: GHC/ARM calling convention.
Hello, first of all: one of the LLVM 3.0 new feature was a support for GHC specific calling convention on ARM platform. It looks like this support was merged just into 3.0 branch, specifically it appeared in 3.0 RC2. Anyway, I hope this is just a mistake or omission that such support was merged only into 3.0 and not also into HEAD. I've just found it by testing LLVM 3.1 with GHC 7.4.2 and
2006 Jul 29
9
export to a CSV or XLS file
hello everyone, Any idea how can i export a resultset from a database to a CSV or XLS file from the application ? would like the user to have the option to export selected data to a CSV/XLS file. Any plugins or libraries avaiable to accomplish this ? Thanks for your time, VASU. -- Posted via http://www.ruby-forum.com/.
2016 Sep 29
5
win 10 client on linux pdc, join domain ok, logon script fails to run
...clicking them. They just won't run by themselves. I have done the registry pokes + policy changes as: https://community.spiceworks.com/topic/1389891-windows-10-and-sysvol-netlogon https://support.microsoft.com/en-us/kb/2895815 https://s18.postimg.org/643ketg49/regedit_samba.png https://s22.postimg.org/6awshoi8h/network_samba.png https://s16.postimg.org/aul5oxh91/grouppolicy_samba.png everything appears to work just no execution of script automatically. I have made sure they are windows line ending format (via unix2dos). testparm output: Load smb config files from /etc/samba...
2012 Jun 29
2
[LLVMdev] Request for merge: GHC/ARM calling convention.
...ge to head, I'm just making sure I > got it right... The rest looks correct. > > + CCIfType<[v2f64], CCAssignToReg<[Q4, Q5]>>, > + CCIfType<[f64], CCAssignToReg<[D8, D9, D10, D11]>>, > + CCIfType<[f32], CCAssignToReg<[S16, S17, S18, S19, S20, S21, S22, S23]>>, > > Does this mean that for floating point support in GHC, you need VFP registers? Yes and no. Shortly: original GHC/ARM/LLVM port was done by Stephen on ARMv5/Qemu IIRC. I've later added whole VFP support and ARMv7 support. The code in GHC is properly #ifdefed, so if th...
2001 Nov 14
0
OPEN ssh pkg
...quot;%@5_Y =V 9IP.R0<WO @AP1T SJO<#LWP<JT8NW"^ MQMV_DU$V*Q1^I:LE F+ UD)X35(5LL*K5PR/(2Y2AG*%&1)!<3D7) JC2A9- MA6L82WPBZ4H+I0,1"=!(Y8$V0)=JRG0TD]<Q39;(*^@:YZ%[@H0OH&!.M:>6 M&0J>3#!X28)1X(6HL)R8T]@;11&K3NZ!YY at I,UW!Y%,IRA]6S"Z(,34F&7AJ M#],/RH\S22*72,QLB#IS"]+,KN8A5,7-G (W0 ;\K"]PI!I05[.9'-,O\ &3 MR0-70\ZLCCQ38OI,BADT+:87=&H>(DW<S"4@^I9FTZR9FVYC&C*I234A57,L MDT$S:QX!->D._^$?')I@<PS @(U)-F& V;Q13M.I0<VU63(Y'LJ,6 %3>&TZ M.V.\4IZ^K!#/DC6)M:H& E(@ $*<MI*&P36YAB+P at B0D@...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and