search for: i10

Displaying 20 results from an estimated 46 matches for "i10".

Did you mean: 10
2007 Nov 23
1
[LLVMdev] Will any pass change simple return branch into select/return pair?
Hi, Can any llvm pass change simple return branch into select/return pair? For example: define i10 @mod_N(i10 zeroext %a) zeroext { entry: %tmp2 = icmp ugt i10 %a, -400 ; <i1> [#uses=1] br i1 %tmp2, label %cond_true, label %return cond_true: ; preds = %entry %tmp5 = add i10 %a, 400 ; <i10> [#uses=1] ret i10 %tmp5 return: ; preds = %entry ret...
2004 May 17
3
Accessing data
Hello, I would like to access my data frame without one variable. E.g.: > colnames(x) [1] "Besch" "Ang.m" "Arb.m" "i10" "Umsatz" "arbstd" I can try x[,-1], but this variable must be called by it??s name. x[,-"Besch"] x[,!"Besch"] attach(x) x[-Besch] ... ... does not work. I could not found a solution of this little problem in any scripts about R and in google. Sh...
2009 Aug 20
2
Insert rows in between dataframes
...309614 i7 1.096044e-17 1.555829e-17 7.044760e-01 0.48173041 i8 -1.166290e-18 1.287370e-17 -9.059482e-02 0.92788026 i9 1.627371e-17 1.540567e-17 1.056345e+00 0.29173427 i10 4.001692e-18 1.365740e-17 2.930053e-01 0.76973827 i12 -1.052843e-17 1.324484e-17 -7.949081e-01 0.42735000 i13 2.571236e-17 1.357336e-17 1.894325e+00 0.05922715 This is my...
2012 Jan 10
1
Centos 5.7, I10 video, 1920x1080 monitor
I have a Centos 5.7 machine with Intel I10 video (built-in, I guess -- this is one of those all-in-one mini terminal things) that I'm trying to put a new 1920x1080 monitor onto, without conspicuous success. Prior to this it's been using a smaller monitor with no issues. Try as I might I can't get the new monitor to run at its...
2009 Aug 17
1
R : how does %in% operator work?
...to use this %in% operator.But it’s not working *predictors_values data frame is shown below:---------------* x 2 recmeanC2 3 recmeanC3 4 recmeanC4 5 i1 6 i2 7 i3 8 i4 9 i5 10 i6 11 i7 12 i8 13 i9 14 i10 15 i11 16 i12 17 i13 18 i14 19 i15 *coef_dataframe_rownames data frame is shown below:----* if (stringsAsFactors) factor(x) else x 1 recmeanC2 2 recmeanC3 3 recmeanC4 4...
2016 Dec 19
1
Aw: rsync show files changed during transfer - how?
...'s got a particular snapshot of the file, because you can't have an atomic read of the whole file. [31m, 49s] <snipp> >nope, this is wrong, there is no message "checksum failed" Actually rsync does that (from a log on our server): ... PUBLIC_SERVER_BACKUP/wiki/data/index/i10.idx WARNING: PUBLIC_SERVER_BACKUP/wiki/data/index/i10.idx failed verification -- update retained (will try again). ... PUBLIC_SERVER_BACKUP/wiki/data/index/i10.idx So it did recognize a change and synched it a second time. Don't know what happens if the file changes again though. >to be a...
2010 Jun 09
1
counting across leves of factors
...bset(c,c$zam==i4) for(i5 in levels(d$saman)){ e<-subset(d,d$saman==i5) for(i6 in levels(e$test)){ f<-subset(e,e$test==i6) for(i7 in levels(f$aktiv)){ g<-subset(f,f$aktiv==i7) for(i8 in levels(g$pocpartF)){ h<-subset(g,g$vekF==i8) for(i9 in levels(h$stav)){ i<-subset(h,h$stav==i9) for(i10 in levels(i$partner)){ j<-subset(i,i$partner==i10) for(i11 in levels(i$aktiv6)){ k<-subset(j,j$aktiv6==i11) for(i12 in levels(k$pocpart6F)){ l<-subset(k,k$pocpart6F==i12) for(i13 in levels(l$styk6F)){ m<-subset(l,l$styk6F6==i13) for(i14 in levels(k$kond6F)){ n<-subset(m,m$kond6F==i14...
2009 Sep 22
3
[LLVMdev] StructLayout
...s data In LLVM 2.6 it's getTypeAllocSize, which does the same thing. Unfortunately, this is not correct for bitfields. For example, LLVM reports this struct: typedef struct test1 { short f0 : 10; char f1 : 5; long f2 : 1; long f3 : 45; } test1_t; which in LLVM is: %test1 = type { i10, i5, i1, i45 } to have size 12 on x86-64 whien it should have size 8. I don't know how to work around this since the original bitfield type has been lost by the time we translate to LLVM. Does this need to be handled in the frontend, to munge the struct type and add the necessary masking an...
2009 Dec 12
1
[LLVMdev] Adding multiples-of-8 integer types to MVT
Hi Ken, > What would do you think of modifying case (3) slightly as follows? well, that special cases the smallest legal type, which might not be a good idea. Imagine that i10 is legal, and also i32. Is it better to turn i40 into four lots of i10 or two lots of i32 with a promotion? Expansion is expensive, so two lots of i32 would be best. I suggest the following scheme: (3) Suppose T is larger than the largest legal type. Look at all the legal types LT for which...
2013 Apr 28
0
hierarchical confirmatory factor analysis with sem package
...Mat cov.matrix<-cov(na.omit(df)) cfa.model<-specifyModel() F1->i2,a1 F1->i3,a2 F1->i4,a3 F1->i11,a4 F1->i12,a5 F1->i15,a6 F1->i18,a7 F2->i6,b1 F2->i7,b2 F2->i8,b3 F2->i13,b4 F2->i20,b5 F3->F1,c1 F3->F2,c2 F4->i1,d1 F4->i5,d2 F4->i9,d3 F4->i10,d4 F4->i14,d5 F4->i16,d6 F4->i17,d7 F4->i19,d8 F1<->F1,NA,1 F2<->F2,NA,1 F3<->F3,NA,1 F4<->F4,NA,1 i2<->i2,error1 i4<->i4,error2 i6<->i6,error3 i7<->i7,error4 i8<->i8,error5 i11<->i11,error6 i13<->i13,error7 i15<->i...
2014 Feb 19
2
Language support annoyance
I've got a user that wants Japanese language support in firefox... our *stock* CentOS firefox, 24.3. I've yum installed i18, and i10, and no joy. Looked at firefox addons, and there's one, 27.0. Won't install, "not compatible". Neither is either 24.0, or 25.0. Anyone have a link to a compatible version? mark
2009 Aug 24
1
natural sorting a data frame /vector by row
How to NATURAL sort a vector or data frame* by row* , in ascending order ? V1 V2 V3 V4 i1 5.000000e-01 1.036197e-17 4.825338e+16 0.00000000 i10 4.001692e-18 1.365740e-17 2.930053e-01 0.76973827 i12 -1.052843e-17 1.324484e-17 -7.949081e-01 0.42735000 i13 2.571236e-17 1.357336e-17 1.894325e+00 0.05922715 i2 -5.630739e-18 1.638267e-17 -3.437010e-01 0.73133282 i3 4.291387e-18 1.207522e-17 3.553879e-01 0.72...
2009 Dec 09
0
[LLVMdev] Adding multiples-of-8 integer types to MVT
On Saturday, December 05, 2009 7:34 AM, Duncan Sands wrote, > > >> Would there be any interest/opposition to extending the > set of simple > >> integer types in MVT to include the missing multiples of 8 > (up to 64 > >> bits)? That is: i24, i40, i48, i56? > > By the way, the integer type legalization logic should > probably go like > this: let
2013 Feb 09
1
Troubleshooting underidentification issues in structural equation modelling (SEM)
Hi all, hope someone can help me out with this. Background Introduction I have a data set consisting of data collected from a questionnaire that I wish to validate. I have chosen to use confirmatory factor analysis to analyse this data set. Instrument The instrument consists of 11 subscales. There is a total of 68 items in the 11 subscales. Each item is scored on an integer scale between 1 to 4.
2016 Oct 31
3
rsync show files changed during transfer - how?
i'm using rsync for backup and, as rsync can detect if files have vanished during transfer, i wonder how rsync can tell which files got modified during transfer (i.e. which are not consistent on the destination side after transfer) apparently, rsync can't show that information? wouldn't that be an extremely useful feature if rsync could do another additional mtime or even checksum
2009 Dec 05
2
[LLVMdev] Adding multiples-of-8 integer types to MVT
>> Would there be any interest/opposition to extending the set of simple >> integer types in MVT to include the missing multiples of 8 (up to 64 >> bits)? That is: i24, i40, i48, i56? By the way, the integer type legalization logic should probably go like this: let T be an integer type. (1) If T is legal, do nothing. (2) If there is a legal integer type which is bigger (in
2004 Jun 06
0
strata() in clogit()
...g odds associated with the strata "id". I suppose the log odds associated with strata(id) gives me \alpha_k. But I can't seem to get them with summary(). Help is greatly appreciated. Yuelin Li. ---- my R syntax is ----------- > exam2.clog<- clogit(resp ~ i5+i6+i7+i8+i9+i10+i11+i12+i13+i14+ i15+i16+i17+ strata(id), data=exam1.1) > summary(exam2.clog) Call: clogit(resp ~ i5 + i6 + i7 + i8 + i9 + i10 + i11 + i12 + i13 + i14 + i15 + i16 + i17 + strata(id), data = exam1.1) n= 476 coef exp(coef) se(coef) z p i5 0.514...
2009 Oct 07
0
how to extract the second table from the factanal functions result's loadings part?
...on1:----* factanal() function produces the results in this way:-- *RESULTS:--* *>fact1<- factanal(data_withNA,factors=1,rotation="none") >fact1$"loadings"* Loadings: Factor1 i1 0.784 i2 0.874 i3 0.786 i4 0.839 i5 0.778 i6 0.859 i7 0.850 i8 0.763 i9 0.810 i10 0.575 i11 0.745 i12 0.777 i13 0.674 i14 0.644 i15 0.796 * Factor1 SS loadings 8.995 Proportion Var 0.600* *How to access the second table* i.e the table other than the "Loadings" table? *Question2:---* How to calculate the* "initial" communalities...
2010 Sep 13
2
SF-36 questionnaire scoring for R?
Dear useRs from the physiology department, Does someone know of an implementation of the SF-36 questionnaire scoring in R? I only found SAS and STATA versions, e.g http://gim.med.ucla.edu/FacultyPages/Hays/util.htm Dieter
2011 Feb 22
1
regsubsets {leaps}
..., I'd like to run regsubsets for model selection by exhaustive search. I have a list with 20 potential explanatory variables, which represent the real and the imaginary parts of 10 "kinds" of complex numbers: x <- list(r1=r1, r2=r2, r3=r3, ..., r10=r10, i1=i1, i2=i2, i3=i3, ..., i10=i10) Is there an easy way to constrain the model search so that "r"s and "i"s are treated as pairs that should always appear together in the models? i.e., in a way where only models like these: y ~ r1, i1 y ~ r3, i3, r8, i8 y ~ r1, i1, r4, i4, r5, i5 are considered in the se...