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

2 次查看(过去 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!!

采纳的回答

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