similar to: create list entry from variable

Displaying 20 results from an estimated 5000 matches similar to: "create list entry from variable"

2012 Dec 13
2
[LLVMdev] Cross compile LLVM
Hi; I am trying to cross compile LLVM for Android-NDK; I am using CMake as a build system; hence, i have defined CMAKE_SYSTEM_NAME variable so to turn on CMAKE_CROSSCOMPILING flag, being used by LLVM. As far as i understand from the LLVM structure; when cross compiling, executable are generated with two versions; one goes under the target build directory ${CMAKE_BINARY_DIR} and the other goes
2009 Sep 05
3
Selecting biological data
Hello all, I am new to R but have some experience with MATLAB and am trying to make the switch. I generally find the two languages easy to adapt but there are a few routine tasks which I would like to run smoother in R and I am having trouble finding a help resource. Could someone suggest a guide to filtering, selecting, sorting, and processing biological matrix data? Here is a rudimentary
2009 Aug 23
1
read data element from data frame
Hi; I have a very basic question about reading element from dataframe T (2 dimentional) I want to extract element T[1,1] as a string. T[1,1] returns an element with "names", means header. this i cannot compare with any other list of strings. how can i fix that? Thanks Rami _________________________________________________________________ [[alternative HTML version
2009 Aug 23
1
reading from dataframe?
Hi; I have a very basic question about reading element from dataframe T (2 dimentional) I want to extract element T[1,1] as a string. T[1,1] returns an element with "names", means header. this i cannot compare with any other list of strings. how can i fix that? Thanks Rami _________________________________________________________________ Get back to school stuff for them and
2009 Sep 02
1
outbound calls not ringing still
i have posted this before but was unable to resolve it. i have some new info so i figured i would try again. the trace from bandwidth.com are below. they are telling me that the ip that is bold should be our ip not bandwidth.com. i have changed every setting that i can see and nothing fixes this. Where would i change this at? they cannot tell me. INVITE sip:+185993133333 at 216.82.224.202
2009 Aug 19
0
ASA John M. Chambers Statistical Software Award - 2010
John M. Chambers Statistical Software Award - 2010 Statistical Computing Section American Statistical Association The Statistical Computing Section of the American Statistical Association announces the competition for the John M. Chambers Statistical Software Award. In 1998 the Association for Computing Machinery presented its Software System Award to John Chambers for the design and development
2006 Jul 21
3
acts_as_ferret with has_many relationship
Using Ferret and the acts_as_ferret plugin, I would like to retrieve results based on models descended from a parent model: class Post < ActiveRecord::Base acts_as_ferret :fields => [ ''title'', ''body'', :post_author, :post_comments ] ... has_one :author has_many :comments end I would like to
2005 Feb 21
2
Samba on AIX
To Whom it may concern: I am new to the samba world. I need to get samba running on AIX 4.3. Is there a different download than the one that is on the site or are they all the same. I downloaded samba-3.11.tar.tar. When I try and untar it on the system, it gives me an error. Any help from you would be appreciated. Thanks Rami Mantoura Foremost Systems, Inc
2006 Aug 19
11
Need help with multi_search
I have been trying to use multi_search to search accross multiple associated models, but I have had no luck at all. I have scoured the net and this forum for all similar posts, but none of them contain enough code for me to get it to work. I am successfully able to search individual models, and then display the results without a problem. I have the following 2 models, Product and Component.
2007 Jul 04
1
kvm developers' forum 2007
We's like to invite all of you to attend the first annual KVM Forum 2007. Please click here http://www.qumranet.com/KVMForum2007.php to be taken to the event site where you can learn more about the KVM Forum 2007 and register online. Hosted by the KVM Developer Community, the purpose of the forum is to bring together developers, testers and other technical individuals from within the community
2007 Jul 04
1
kvm developers' forum 2007
We's like to invite all of you to attend the first annual KVM Forum 2007. Please click here http://www.qumranet.com/KVMForum2007.php to be taken to the event site where you can learn more about the KVM Forum 2007 and register online. Hosted by the KVM Developer Community, the purpose of the forum is to bring together developers, testers and other technical individuals from within the community
2012 Jan 04
1
Rami
Hi, Does anybody know if RAMI (Ruby Ami) is still functional? And is this still compatible with asterisk 1.8 Best Regards, Arjan Kroon Mobillion BV
2016 Feb 08
2
Re: Getting "unknown device type" when attaching NPIV (vHBA) to vm
Thank you for your reply, I'm still getting hard time to attach the hostdev, I couldn't make it work out of the doc. I took the address details from: # ll /sys/bus/scsi/devices/7:* lrwxrwxrwx 1 root root 0 Feb 8 12:58 /sys/bus/scsi/devices/7:0:0:0 -> ../../../devices/pci0000:00/0000:00:03.0/0000:08:00.1/host7/rport-7:0-0/target7:0:0/7:0:0:0 lrwxrwxrwx 1 root root 0 Feb 8 12:58
2009 Oct 20
3
Courier to dovecot migration issue
Hello, I am trying to migrate users form courier to dovecot 1.2.6. The main configuration parameters are as follows : ------------------------------------------------------------------------------------------------------ # 1.2.6: /usr/local/etc/dovecot.conf Warning: fd limit 1024 is lower than what Dovecot can use under full load (more than 2304). Either grow the limit or change
2015 May 04
2
Define replacement functions
Hello I tried to define replacement functions for the class "mylist". When I test them in an active R session, they work -- however, when I put them into a package, they don't. Why and how to fix? make_my_list <- function( x, y ) { return(structure(list(x, y, class="mylist"))) } mylist <- make_my_list(1:4, letters[3:7]) mylist mylist[['x']] <- 4:6
2017 Jun 15
4
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi I have a list : mylist <- list( a = NULL, b = 1, c = 2 ) > mylist[1] $a NULL > is.null(mylist[1]) [1] FALSE > is.null(mylist$a) [1] TRUE why? I need to use mylist[1]
2009 Oct 25
3
NULL elements in lists ... a nightmare
I can define a list containing NULL elements: > myList <- list("aaa",NULL,TRUE) > names(myList) <- c("first","second","third") > myList $first [1] "aaa" $second NULL $third [1] TRUE > length(myList) [1] 3 However, if I assign NULL to any of the list element then such element is deleted from the list: > myList$second <-
2010 May 17
3
applying quantile to a list using values of another object as probs
Hi r-users, I have a matrix B and a list of 3x3 matrices (mylist). I want to calculate the quantiles in the list using each of the value of B as probabilities. The codes I wrote are: B <- matrix (runif(12, 0, 1), 3, 4) mylist <- lapply(mylist, function(x) {matrix (rnorm(9), 3, 3)}) for (i in 1:length(B)) { quant <- lapply (mylist, quantile, probs=B[i]) } But quant
2005 Mar 16
8
Summing up matrices in a list
Dear all, I think that my question is very simple but I failed to solve it. I have a list which elements are matrices like this: >mylist [[1]] [,1] [,2] [,3] [1,] 1 3 5 [2,] 2 4 6 [[2]] [,1] [,2] [,3] [1,] 7 9 11 [2,] 8 10 12 I'd like to create a matrix M<-mylist[[1]]+mylist[[2]] [,1] [,2] [,3] [1,] 8 12 16 [2,] 10 14 18
2001 Oct 18
2
Parsing for list components
How do I parse an identifier of a list component, e.g. mylist$mycomponent or mylist[[1]] ? Parse does not do the job, e.g. parse(text="mylist$mycomponent") returns an expression with just one term, instead of "mylist", "$", "mycomponent". What I need is a way to extract the list name (e.g. "mylist"), given an identifier of a component.