How can I make the following expression changes dynamically?

2 Ansichten (letzte 30 Tage)
How can I make the following expression changes dynamically?
VariableX = importdata ('FilenameX.out');
where, everything is constant but the "X" is a integer number that changes from 1 to 5
for example: hello4 = impotdata ('file4.out');

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 31 Jul. 2012
Bearbeitet: Azzi Abdelmalek am 31 Jul. 2012
for k=1:4
Filename='exemple', %exemple
file=strcat(Filename,num2str(k),'.out')
evalc(strcat('Variable',num2str(k),' = importdata(''',file,''')'));
end
  3 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 31 Jul. 2012
Bearbeitet: Azzi Abdelmalek am 12 Sep. 2012
ok , I will fix it
Ahmed Elkady
Ahmed Elkady am 31 Jul. 2012
Yes .. it works... much appreciate your effort .. Thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by