search for: abbeviate

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

Did you mean: abbreviate
2008 Nov 12
2
Outer, kronecker, etc.
...ions and does its own elementwise mapping? In the first example above, I'd expect the result to be the same as mm <- matrix(list(list(1,3),list(1,4),list(2,3),list(2,4)),2,2) which prints as [,1] [,2] [1,] List,2 List,2 [2,] List,2 List,2 By the way: how can I get this not to abbeviate the entries but instead give me something like: [,1] [,2] [1,] list(1, 3) list(2, 3) [2,] list(1, 4) list(2, 4) The closest I can get is matrix(as.character(mm),2,2) By-the-way^2: is there some Xapply function that maps a function over all the elements of a structure (vector, matrix,...