Store columns in a matrix in different variables

Hi,
I have a matrix A (5479 x 378). I need to store every column of the matrix A in separate arrays St1, St2, St3....St378. So each St array will have 5479 x 1.
Can somebody help me with this?
Thanks in advance.

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 6월 17일
편집: Azzi Abdelmalek 2014년 6월 17일

2 개 추천

st=num2cell(A,1)
You can access each column by
st{1}
st{2}

추가 답변 (1개)

Jos (10584)
Jos (10584) 2014년 6월 17일

0 개 추천

Why do you want to do this? It is much easier to deal with a specific column using indexing A(:,13) then using variable names like St13 …
k = 13
tmp = A(:,k)

카테고리

도움말 센터File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

질문:

2014년 6월 17일

댓글:

2014년 6월 17일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by