Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

I wants to continuous log time in excel for each of my for loop in saperate rows?

1 view (last 30 days)
I am using following command to get the timing parameter:
timeA = 0; for i = 1:10 timeA = datestr(now,'HH:MM:SS.FFF AM'); disp(timeA); xlswrite('C:\test1.xlsx', cellstr(timeA)); end In this for every values of i, I am able to display the date characters on MATLAB screen but this function only writes to Cell A1 everytime. Instead of this I want to have for each values of i it should jump to next row. i.e. if for i = 1 it should write value timing value in A1 cell of excel and after value of i = 2, it should move to cell A2 and write the timing parater.

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!