Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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 commentaires
Stephen23
Stephen23 le 10 Sep 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.

Connectez-vous pour commenter.

Réponse acceptée

madhan ravi
madhan ravi le 10 Sep 2019
Modifié(e) : madhan ravi le 10 Sep 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 commentaires
madhan ravi
madhan ravi le 10 Sep 2019
All the vectors are saved in b already.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by