Displaying 1 result from an estimated 1 matches for "no_of_cols_of_ogirinal_matrix".
2010 Mar 30
2
Need help to split a given matrix is a "sequential" way
...t;- dat1[which(dat1[,2] == unique(dat1[,2])[3]),]; dat11; dat12;
> dat13
[1] 200 100 80
[,1] [,2] [,3]
[1,] 200 150 180
[2,] 200 150 100
[,1] [,2] [,3]
[1,] 200 50 140
[2,] 200 50 180
similarly for dat2..............
This kind of sequential spliting would continue for
(no_of_cols_of_ogirinal_matrix -1) times. It would be greate if again I can
put all those matrices within a "list" object for further calculations.
Therefore you see if the original matrix is of small_size then that can be
handled manually. However for a moderately large matrix that task would be
very clumbersome. The...