Displaying 1 result from an estimated 1 matches for "ux3i".
Did you mean:
u83i
2007 Apr 04
2
Newbie: Simple loops: complex troubles
...paste("m",1,sep=""),m[k]) , assign(paste("m",1,sep=""),v[k]) )
)
}
The above seems like a lot of work for such a simple feat, no?
Also, I CANNot get the following to work in a loop manor:
Ux1i<-as.integer(Ux1)
Ux2i<-as.integer(Ux2)
Ux3i<-as.integer(Ux3)
or
Sx1<-sort(Ux1i)
Sx2<-sort(Ux2i)
Sx3<-sort(Ux3i)
Maybe I am just not using matrixes enough? but even that seems quite a lot
more complex than calling x<-matrix() then grabbing values by
x[j][k]...(java style if i remember correctly). the matrix help in R dosn...