Is there a way to store execution times on a disk?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Steven Deng
le 13 Oct 2022
Commenté : Star Strider
le 13 Oct 2022
I am coding a program that add integer numbers, from 1 to N, one by one, where N is supposed to be an input.
However, I am also given the task of having the program take each intermediate result, storing them onto a disk, and report on execution times.
The first part is working out well, but I have no clue how to do the second part. Is this task possible for MATLAB to do?
So far, I have:
function fact = addInteger(n)
fact = 0;
for i = 1:n
fact = fact + i;
end
end
0 commentaires
Réponse acceptée
Star Strider
le 13 Oct 2022
4 commentaires
Star Strider
le 13 Oct 2022
My pleasure!
I don’t see how your code differs significantly from mine, though, at least with respect to the tic and toc calls.
If my Answer helped you solve your problem, please Accept it!
.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!