How to extract individual vectors out of a matrix and save them with different names?

조회 수: 1 (최근 30일)
Hi all, so I have a Matrix A (270,10) and I want to create, for each column, a different vector, caled for example b1, b2, b3 and so forth...
so here I have the code:
notes: size(varargout,2) = 270
for h = 1: size(varargout,2)
for v=1:10
vectors = A(:,v);
end
end
it keeps giving me matrixes, when I wanted separated vectors...
Can anyone help me?
Thanks!!
  댓글 수: 2
Stephen23
Stephen23 2019년 9월 10일
"...caled for example b1, b2, b3 and so forth..."
Using numbered varaibles is a sign that you are doing something wrong.
It is much simpler and much more efficient to use indexing.

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2019년 9월 10일
편집: madhan ravi 2019년 9월 10일
What you're doing is not a good idea see https://in.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval , use a cell array or a ND array instead.
b=num2cell(matrix,1);
celldisp(b)
  댓글 수: 3

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by