search for: listobj

Displaying 1 result from an estimated 1 matches for "listobj".

2011 Apr 27
3
Question on list object
Dear all, let say, I have following list object: listObj <- vector("list", length = 3) listObj[[1]] <- rnorm(3) listObj[[2]] <- rnorm(4) listObj[[3]] <- rnorm(5) Now I want to convert above list into a Matrix. Ofcourse I can do it using "Reduce("rbind", listObj)". However as you notice that as elements of...