I'm studying a MATLAB code.
There are two lines which I cannot understand.
for N=1:2
temp=['StressSolution' int2str(N) '.txt']
F=fopen(temp,'r')
end
Could anyone kindly help me with it?

 Akzeptierte Antwort

Stephan
Stephan am 24 Mär. 2019
Bearbeitet: Stephan am 24 Mär. 2019

1 Stimme

Hi,
the first line creates filenames depending from N as a string and saves it in temp:
temp = StressSolution1.txt
temp = StressSolution2.txt
The second line opens the specified files for reading.
Best regards
Stephan

Weitere Antworten (0)

Kategorien

Mehr zu Stress and Strain finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 24 Mär. 2019

Kommentiert:

am 24 Mär. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by