how to save filename from string
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
If I can same a string in a variable, is it possible to save a file name with this variable string, such that each time I run a loop, I can save the file name with a different name ?
The idea is shown below. Please ignore any syntax as I am trying to determine that
num = 'first'
rfwrite(first4portsparam, ' "the string num here ".s4p')
So in next loop I will replace
num = 'second'
rfwrite(first4portsparam, ' "the string num here ".s4p')
so in the end I will have 2 files first.s4p and second.s4p
Thanks !
2 Kommentare
Akira Agata
am 21 Feb. 2019
How about saving files using "prefix + serial number" as a file name, such as a001.s4p, a002.s4p,...?
Antworten (1)
ES
am 21 Feb. 2019
% This will save files like 1.s4p, 2.s4p, 3.s4p and so on
for iLoop=1:NumberOfFiles
rfwrite(first4portsparam, [num2str(iLoop),'.s4p']);
end
Siehe auch
Kategorien
Mehr zu Entering Commands 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!