Matlab does not save the variable in each loop

1 次查看(过去 30 天)
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'.

采纳的回答

per isakson
per isakson 2020-4-20
you need to pre-allocate Tout, something like
N = appropriate value
Tout = cell(1,N);
before assigning values
  6 个评论
farzad
farzad 2020-4-21
How can I have different variable names in each row ? is it possible to use matlab structures?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by