Different arrayname for every data

1 vue (au cours des 30 derniers jours)
alex
alex le 15 Mai 2013
Hi, I have this code to read in files:
yourfolder='F:\wichtige Dokumente\Universität\SoSe 2013\Bachelorarbeit\Daten\SIR Daten\Alles\*.sir';
repertoir=dir(yourfolder);
files={repertoir.name}
for a=1:2
image=?
[image, head, descrip, iaopt]=loadsir(files{1,a})
end
[image] gives out an array. How can i change the name of the array for every run?
Thanks

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 15 Mai 2013
Modifié(e) : Azzi Abdelmalek le 15 Mai 2013
for a=1:2
[image, head, descrip, iaopt]=loadsir(files{1,a})
imag{a}=image
end
  1 commentaire
alex
alex le 15 Mai 2013
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Analysis 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