How to store execution time in execution time in runtime
19 次查看(过去 30 天)
显示 更早的评论
I have executed my program code and measure its execution time using tic toc. Is it possible to store this value run time in a excel file. Is there is another code to find execution time that can store it.
0 个评论
采纳的回答
Adam
2015-10-1
tic
...some code...
t = toc;
will store the time in 't'. Then you can do whatever you want with it from there.
0 个评论
更多回答(1 个)
Jan
2015-10-1
Storing a time in an Excel file works exactly as storing any other value in an Excel file. See help xlswrite.
Using tic and toc is a smart way to determine the execution time, but storing values in a file is not its job. So you actual problem concerns writing data to files. So please specify what you have tried so far and which problems occur.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!