Matlab does not save the variable in each loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
farzad
am 20 Apr. 2020
Kommentiert: farzad
am 21 Apr. 2020
Hi all , using some advices from previously asked questions , I used indexing to append values to a table that I am gonna write on Excel file :
if f1==1
Tout{1}=[filename;Tit]
else
Tout{f1} = [Tout{f1-1};filename;Tit]
end
writetable(Tout{end},'All.xlsx')
But I get the error
Error: Undefined function or variable 'Tout'.
0 Kommentare
Akzeptierte Antwort
per isakson
am 20 Apr. 2020
you need to pre-allocate Tout, something like
N = appropriate value
Tout = cell(1,N);
before assigning values
6 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Cell Arrays 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!