Effacer les filtres
Effacer les filtres

How to save all values generated from a for statement in different variables

1 vue (au cours des 30 derniers jours)
Belal Abboushi
Belal Abboushi le 6 Mar 2015
Commenté : Adam le 6 Mar 2015
Hello,
I'm using a for statement to extract values from a matrix depending on i.
for i=1:intn % number of sources Ls= filename(i+1,5)
In this case, I need to save all generated values of Ls as Ls1, Ls2, Ls3, etc.. I tried Ls(i) but it didn't work. Does anyone know how to integrate i into the string name?
Any help would be highly appreciated!
Thanks,
  3 commentaires
Belal Abboushi
Belal Abboushi le 6 Mar 2015
When i used Ls(i), i got a variable Ls with two values in it (1x2 cell). Thanks,
Adam
Adam le 6 Mar 2015
Unless intn is 2 it sounds like you used it incorrectly in that case, but you haven't posted your code so it is impossible to say much more.

Connectez-vous pour commenter.

Réponses (1)

Ingrid
Ingrid le 6 Mar 2015
you could try to use a structure that would look something like this:
for i =1:intn
currentName = ['Ls' num2str(i)]
results.(currentName) = filename(i+1,5);
end
than you can store the Ls1,Ls2,... as follows
save filename results -struct

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by