How can I export the results to Excel for all loop steps ?

1 次查看(过去 30 天)
I used this xlswrite('D:\data.xlsx','SINR'); to save the result in excel file but I couldn't save it for all loop steps its always save the last step's result. i would appreciate your help if you could help me with this
thanks in advance
  1 个评论
Sulaymon Eshkabilov
First of all, it is advised to use writematrix() instead of xlswrite due to high efficiency.
Second, if possible, avoid using a loop for efficiency purposes again. If not avoidable, then 'append' option has to be employed - see this simple example code:
for ii = 1:10
x = ii+1;
writematrix([x,ii], 'LOOP_Data.xlsx', 'writemode', 'append');
end

请先登录,再进行评论。

回答(0 个)

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by