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

1 visualizzazione (ultimi 30 giorni)
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 Commenti
Stephen23
Stephen23 il 10 Set 2019
"...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.

Accedi per commentare.

Risposta accettata

madhan ravi
madhan ravi il 10 Set 2019
Modificato: madhan ravi il 10 Set 2019
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 Commenti

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by