Skip to content
Back to formatted view

Raw Message

Message-ID: <1345097278194-4640465.post@n4.nabble.com>
Date: 2012-08-16T06:07:58Z
From: bantex
Subject: Column Extraction from matrix

Hi all,

I have a 4 by 100 matrix. I wish to extract each column and make it into a 2
by 2 matrix. 
I also want to assign names for each 2X2 matrix. 
For example

set.seed(2)
 a=matrix(rnorm(400),ncol=100)
a1=matrix(a[,1],ncol=2)
a2=matrix(a[,2],ncol=2)
.
.
.
a100=matrix(a[,100],ncol=2)   

Any simple ideas. Thanks.

B




--
View this message in context: http://r.789695.n4.nabble.com/Column-Extraction-from-matrix-tp4640465.html
Sent from the R help mailing list archive at Nabble.com.