Skip to content
Prev 77933 / 398502 Next

dynamic lists (data frames?)

Tom
Got it thanks
the trick was to create a variable with the new name
str_idx<-paste('c',i,sep='')
then use double square brackets
l_cooef[str_idx]]<-whatever()


f_haardisolve<-function(v_dataset){
    #pad data to make length a power of 2
    v_dataset<-f_paddata(v_dataset)

    l_cooef<-list() #holder for cooefficents
    i_count<-1      #identity counter

    while(length(v_dataset)>0){
        #seperate odd and even points
        v_dataset<-f_splitpoints(v_dataset)

        v_dataset<-f_haarpredict(v_dataset)
        v_dataset<-f_haaruplift(v_dataset)
        
        str_idx<-paste('c',i_count,sep='')
        l_cooef[[str_idx]]<-list()

l_cooef[[str_idx]]<-v_dataset[c((length(v_dataset)/2)+1:(length(v_dataset)/2))]
        v_dataset<-v_dataset[c(1:length(v_dataset)/2)]

        i_count<-i_count+1
    }
    l_cooef
}
On Tue, 2005-27-09 at 10:39 -0400, tom wright wrote: