search for: array3

Displaying 12 results from an estimated 12 matches for "array3".

Did you mean: array
2006 Jun 16
0
a method to trim composite objects?
...= "array"), prototype=prototype( my.list =list(), my.array1 =array(0,c(3,3,3)) )) #------------------ setClass("my.class2", representation( my.array2 = "array", my.array3 = "array"), prototype=prototype( my.array2 =array(0,c(3,3,3)), my.array3 =array(0,c(3,3,3)) )) #------------------ x <- new("my.class1") x at my.list[[1]] <- new("my.class2") x at my.li...
2003 Apr 26
4
array to data.frame
Hi, How i can convert a array in to data.frame structure? For example, vinteesete<-array(c(1,0,6,4,22,29,11,7,6,2,8,7,21,25,5,6,1,0,11,6,14,24,13,10,2,2,15,13,14,17,9,8,1,2,16,9,14,23,9,6,6,2,17,13,10,20,7,5), dim=c(2,4,6), dimnames=list(grupo=c("I","II"), opiniao=c("Ma","Regular","Boa","MBoa",),
2011 Sep 22
2
create variables through a loop
...n array1 1 C-7SARK 1 849467 10 2 C-4WYLN 1 854278 10 3 C-3BFNY 1 854471 10 4 C-7ONNE 1 874460 10 5 C-6HYCN 1 874571 10 6 C-7SCGC 1 874609 10 I have 48 other array data from a list result.fun array2=result.fun[[1]] array3=result.fun[[2]] . . I want the following results: probe_name chr_id position array1 array2 array3 1 C-7SARK 1 849467 10 10 10 2 C-4WYLN 1 854278 10 10 10 3 C-3BFNY 1 854471 10 10 10 4 C-7ONNE 1 874460 10...
2010 Aug 31
4
pasting together 2 character arrays
...uld like to combine two different character arrays in combinations Array1 <- c("height","weight","age","sex") Array2 <- c("trt0","trt1","trt2") I would like to combine these two character vectors to end up with such ... Array3 "height.trt0.trt1" "height.trt0.trt2" "weight.trt0.trt1" "weight.trt0.trt2" "age.trt0.trt1" "age.trt0.trt2" "sex.trt0.trt1" "sex.trt0.trt2" I'm trying combinations of the "combinations" and "paste&q...
2018 Nov 01
4
Fwd: RFC: Adding debug information to LLVM to support Fortran
...DW_AT_name: array2 DW_AT_type: 4d08 ;TYPE(t) DW_TAG_subrange_type: DW_AT_type: int DW_AT_lower_bound: 1 DW_AT_upper_bound: 2 byte block: 91 70 2.2.3 Assumed size arrays An assumed size array leaves the last dimension of the array unspecified. SUBROUTINE subr3(array3) TYPE(t) :: array3(*) The compiler generates DWARF information without an upper bound, such as in this snippet. DW_TAG_array_type DW_AT_name: array3 DW_TAG_subrange_type DW_AT_type = int DW_AT_lower_bound = 1 This DWARF is produced by omission of the upper bound information. !122 = !...
2006 Jul 26
1
Calling another method in the same controller
Hi, probably this is realy simple, but for some reason i don''t see it. probably i still don''t think object orriented :) lets say i have a piece of code which generates an array based on a few inputs. within a controller i want to use this code to generate three arrays, all based on different input variables how do i do that? can i call another method within a method? if so,
2011 Aug 22
1
select columns array2 not equal to 10
Dear R community, I have a data set like the following: probe_name chr_id position array1 array2 array3 array4 array5 array6 array7 1 C-3AAAA 10 16566949 10 10 10 10 10 10 10 2 C-3AAAB 17 33478940 10 10 10 10 10 10 10 3 C-3AAAC 3 187369224 10 10 2 10 10 1 10 4 C-3AAAD 8 28375041 10 10...
2011 Jul 09
1
[LLVMdev] getting and setting array indices c interface
...Array %val = load i32* %x %index = load i32* %x %ptr = getelementptr i32* %array store i32 %val, i32* %ptr %ctr = load i32* %x %next = add i32 %ctr, 1 store i32 %next, i32* %x br label %For1 ForEnd1: ; preds = %For1 %ind = load i32* %a1 %array3 = load i32** %ptrMyArray %ptr = getelementptr i32* %array3 %ele = load i32* %ptr ret i32 %ele } -- Andrew Ferguson +649 372 6039 www.idlearts.com
2009 Jul 15
0
Fwd: DLLs
...bout where to look to solve this problem would be much appreciated. Robin Cowan Here is the simple Pascal code: Running on a Macintosh Intel, OS X 10.5, R 2.9.1 {$MODE DELPHI} library LearningLib; const num=75; type array1= array[1..2,1..num] of Double; array2=array[1..num,1..num] of longint; array3=array[1..num,1..num] of Double; array4=array[1..num] of longint; pA1=^array1; pA2=^array2; pA3=^array3; pA4=^array4; pD=^Double; procedure learning(loc1:pA1;adj1:pA2;alpha:pD); cdecl; var i1,i2,neighs:longint; sum1,sum2:double; newloc: array [1..2,1..num] of double; begin for i1:=1 to 2 do for i2:...
2009 Aug 17
1
Question concerning file permissions in Samba 3.3.4
...r = /home/%U winbind use default domain = No cups options = raw smb ports = 445 [array2] comment = "Disk Array 2" path = /mnt/array2 read only = No admin users = admindude1 inherit acls = yes map acl inherit = yes [array3] comment = "Disk Array 3" path = /mnt/array3 read only = No admin users = admindude1 inherit acls = yes map acl inherit = yes Thanks, Bill Dorrian Unix/Linux Systems Support (904) 232-2742 "I did not get my Spaghetti-O's. I got...
2018 Nov 01
2
RFC: Adding debug information to LLVM to support Fortran
..._type: DW_AT_name: array2 DW_AT_type: 4d08 ;TYPE(t) DW_TAG_subrange_type: DW_AT_type: int DW_AT_lower_bound: 1 DW_AT_upper_bound: 2 byte block: 91 70 2.2.3 Assumed size arrays An assumed size array leaves the last dimension of the array unspecified. SUBROUTINE subr3(array3) TYPE(t) :: array3(*) The compiler generates DWARF information without an upper bound, such as in this snippet. DW_TAG_array_type DW_AT_name: array3 DW_TAG_subrange_type DW_AT_type = int DW_AT_lower_bound = 1 This DWARF is produced by omission of the upper bound information. !122 = !DIFortranSu...
2011 Nov 16
4
Pairwise correlation
Dear All, I am not familiar with R yet I want to use it to perform some task, hence my posting here. I hope someone can help. I have a set of data, genes (rows) and samples (columns). I want to do a Pearson correlation on all the possible pairwise combinations of all the genes (2000). Does anyone have an idea of how to execute this in R? Thanks in advance. -- View this message in context: