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

2 visualizaciones (últimos 30 días)
omar th
omar th el 30 de Abr. de 2022
Comentada: Sulaymon Eshkabilov el 30 de Abr. de 2022
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 comentario
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 30 de Abr. de 2022
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

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by