search for: l12

Displaying 16 results from an estimated 16 matches for "l12".

Did you mean: 12
2012 May 18
1
Help for numericDeriv function
...ign the matrix elements to these objects. These objects will be also an element of another matrix. l <- matrix(nrow=nrow(load),ncol=ncol(load)) for(i in 1:nrow(load)) { for(j in 1:ncol(load)) { l[i,j]=paste("l",i,j,sep="")}} > l [,1] [,2] [1,] "l11" "l12" [2,] "l21" "l22" [3,] "l31" "l32" > l11 [1] 3 > l12 [1] 0 > l21 [1] 1 > l22 [1] 4 > l31 [1] 1 > l32 [1] 3 Let's say, I need to take the derivative of (l11*l21+l12*l22) with respect to l11,l12,l21,l22,l31,l32. > numericDeriv(...
2006 Aug 16
1
Specifying Path Model in SEM for CFA
...the observed variables for a CFA model. (Once I get this working I need to add some further constraints.) Here is what I've tried: model.sa <- specify.model() F1 -> X1,l11, NA F1 -> X2,l21, NA F1 -> X3,l31, NA F1 -> X4,l41, NA F1 -> X5, NA, 0.20 F2 -> X1,l12, NA F2 -> X2,l22, NA F2 -> X3,l32, NA F2 -> X4,l42, NA F2 -> X6, NA, 0.25 F1 <-> F2,g12, 1 F1 <-> F1,g11, 1 F2 <-> F2,g22, 1 X1 <-> X1, NA, 1 X2 <-> X2, NA, 1 X3 <-> X3, NA, 1 X4 <-> X4, NA, 1 X5 <-> X5, N...
2000 Mar 31
1
R: one bananna aov() question
...L3 21 1.40911506776508 3 L4 23 1.86473558331119 4 L5 24 -0.090884932234919 5 L6 25 -2.09088493223492 6 L7 26 3.36473558331119 7 L9 27 -0.559327664097794 8 L10 2 0.181304809992027 9 L12 4 -3.05932766409779 10 L13 5 3.94067233590221 11 L16 7 1.68130480999203 12 L17 8 -1.31869519000797 13 L18 9 -2.05932766409779 14 L19 10 2.44067233590221 15 L21 13 -1.66682168482594 16 L22...
2007 Apr 13
0
How consistent is predict() syntax?
...A NA -0.21 -2.28 -2.71 2.26 ... $ y.l7 : num NA NA NA NA NA NA NA -0.21 -2.28 -2.71 ... $ y.l8 : num NA NA NA NA NA NA NA NA -0.21 -2.28 ... $ y.l9 : num NA NA NA NA NA NA NA NA NA -0.21 ... $ y.l10: num NA NA NA NA NA NA NA NA NA NA ... $ y.l11: num NA NA NA NA NA NA NA NA NA NA ... $ y.l12: num NA NA NA NA NA NA NA NA NA NA ... I have: > insample <- 1:179 > outsample <- 180:191 To help you see what is going on: > D[outsample,] y y.l1 y.l2 y.l3 y.l4 y.l5 y.l6 y.l7 y.l8 y.l9 y.l10 y.l11 y.l12 180 NA 8.81 8.53 5.68 5.97 9.75 7.20 7.63 4.73 12.24 10.76 8.13 9....
2015 Aug 07
2
vfs_streams_xattr and create mask = 0640 don't play well together
...sion changes when modifiying metadata anyway, do we?). Is this a bug or a misconfiguration on our side? I am happy to file a bug report, if it turns out to be one. Any thoughts? Thanks in advance, Thomas -- Thomas Werschlein, IT Services Department of Geography, University of Zurich Office: Y25-L12, Tel: +41 (0)44 63-56536 PGP-Key-ID: C76C851B
2017 Mar 23
4
[LLD] Can't create dynamic relocation R_X86_64_64 against local symbol in readonly segment
Hi, the attached example works with bfd-ld and with gold, but not with lld: $ cat rodatareloc.s ... .align 16 leaq .JTab(%rip), %r10 jmp *(%r10, %rdx, 8) ... .section .rodata .JTab: .quad .L00, .L01, .L02, .L03, .L04, .L05, .L06, .L07 .quad .L08, .L09, .L10, .L11, .L12, .L13, .L14, .L15, .L16 $ gcc -o rodatareloc.s.o -c rodatareloc.s $ lld -o rodatareloc.so -shared rodatareloc.s.o ld: error: rodatareloc.s.o:(.rodata+0x0): can't create dynamic relocation R_X86_64_64 against local symbol in readonly segment defined in rodatareloc.s.o Changing the section fr...
2017 Jun 01
0
Post for R
Hi Carrie, You may have a problem with this if some subsets are empty: L3<-lapply(split(df,cut(df$max,seq(0,1,by=0.01))), split,cut(df$submax,seq(0,0.2,by=0.02))) Jim On Thu, Jun 1, 2017 at 12:48 PM, carrie wang via R-help <r-help at r-project.org> wrote: > > Hello, > I want to split the dataframe into 1000 groups based on two column values(max value and second max value).
2008 Jan 12
1
[LLVMdev] Labels
...o(void (i8*, i32)* @yy_13_body, i32 %tmp50, i32 %tmp51) %yypos11 = load i32* @yypos %yythunkpos11 = load i32* @yythunkpos %tmp52 = call i32 @yymatchChar(i8 102) %tmp53 = icmp ne i32 %tmp102, 0 br i1 %tmp53, label %StringNotEqualZero13, label %StringEqualZero13 StringNotEqualZero13: br label %l12 StringEqualZero13: call i32 @yyText(i32 %yybegin, i32 %yyend) %tmp54 = ptrtoint i8* @str0 to i32 %tmp55 = icmp eq i32 %tmp0, 0 br i1 %tmp55, label %PredicateEqualZero0, label %PredicateNotEqualZero0 PredicateEqualZero0: br label %l12 PredicateNotEqualZero0: %tmp56 = call i32 @yymatchChar(i8 1...
2019 Sep 24
1
Implementation of custom USV solution driver from manufacturer
Dear Nut-Devs, I have general question to the contribution and the handling of new code in the NUT-Project. We would like to implement our USV-Solution as a driver to NUT, but we are having the problem, that we need a powerful ā€œCā€-based gpio library for it. We discussed this topic internally, and we are having the opinion, that it does make sense, to write this library separate from a
2017 Jun 01
3
Post for R
Hello,? I want to split the dataframe into 1000 groups based on two column values(max value and second max value). First, I made two lists L1 and L2. ?L1 is the list divided into 100 groups based on the range of max value and L2 is divided into 10 groups based on the second max values. Now I want to do the combinations based on L1 and L2. I want to do a for loop for L1 and for each element in L1,
2012 Aug 27
3
libguestfs! help!
On Sun, Aug 26, 2012 at 09:52:23PM -0400, tao zhou wrote: > hello everyone! > > first i use libguestfs API to upload a file into my linux VM , and > then i want to execute some command(for example : tar xzvf XXX? > chkconfig --add XXX) to config my application by java libguestfs > API?what should i do? could you show me an example in java? > Thanks! Attached is a simple
2018 Dec 08
0
NHW Project - new -l13 very high compression quality setting
Hello, I wanted to let you know that I have released a new -l13 very high compression quality setting for the NHW Project (and we can still save 2.5KB per .nhw compressed file). I find this -l13 quality setting very competitive (I will maybe use some of its processing to improve -l12 setting).Compared to x265 (HEVC), I have tested on 15 rather good quality images, and I visually prefer the results of the NHW Project because it has more neatness. Some technical details for this setting, I wash out details even more and on the other hand I use these bits to still maintain a good...
2024 Mar 11
1
R6 "classname" and generator name
I'm writing some code that does a bit of introspection of R6 classes and am wondering about the "classname" parameter. Its the first parameter to the "R6Class" class generator generator function, and the few examples I've looked at on CRAN set it the same as the name of the generator function, for example, from the docs: Queue <- R6Class("Queue", .....)
2012 Jul 19
2
Subsetting problem data, 2
Hello, I didn't give enough information when I sent an query before, so I'm trying again with a more detailed explanation: In this data set, each patient has a different number of measured variables (they represent tumors, so some people had 2 tumors, some had 5, etc). The problem I have is that often in later cycles for a patient, tumors that were originally measured are now missing (or
2005 May 30
3
sapply following using by with a list of factors
...5", "j6", "j7", "j8", "j9", "k1", "k10", "k2", "k3", "k4", "k5", "k6", "k7", "k8", "k9", "l1", "l10", "l11", "l12", "l2", "l3", "l4", "l5", "l6", "l7", "l8", "l9", "m1", "m10", "m11", "m2", "m3", "m4", "m5", "m6", "m7", "m8&quot...
2017 Mar 14
3
llvm-stress crash
...6, i32 0, i32 2, i32 4> %I8 = insertelement <4 x i16> %Shuff7, i16 27357, i32 0 %B9 = xor <4 x i16> %Shuff7, %Shuff7 %Tr10 = trunc i64 %4 to i1 br label %CF239 CF239: ; preds = %CF261 %Sl11 = select i1 %Tr10, i16 -1, i16 27357 %L12 = load i8, i8* %0 store i64 %L5, i64* %A %E13 = extractelement <8 x i1> zeroinitializer, i32 0 br label %CF238 CF238: ; preds = %CF238, %CF239 %Shuff14 = shufflevector <4 x i16> zeroinitializer, <4 x i16> zeroinitializer, <4 x...