Different arrayname for every data

1 次查看(过去 30 天)
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

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-15
编辑:Azzi Abdelmalek 2013-5-15
for a=1:2
[image, head, descrip, iaopt]=loadsir(files{1,a})
imag{a}=image
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by