Different arrayname for every data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 15 de Mayo de 2013
Editada: Azzi Abdelmalek
el 15 de Mayo de 2013
for a=1:2
[image, head, descrip, iaopt]=loadsir(files{1,a})
imag{a}=image
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!