Displaying 1 result from an estimated 1 matches for "tp19991526p19994922".
2008 Oct 15
2
Defining a "list"
Can anyone please tell me how to define a "list". Suppose I want to define a list object "result" with length n then want to fill each place of "result" with different objects. For e.g.
i=1
result[1] = rnorm(1)
i=2
result[2] = rnorm(2)
.......................
i=n
result[n] = rnorm(n)
What would be the best way to do that?
Regards,