Is there a way to store execution times on a disk?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Steven Deng
el 13 de Oct. de 2022
Comentada: Star Strider
el 13 de Oct. de 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 comentarios
Respuesta aceptada
Star Strider
el 13 de Oct. de 2022
4 comentarios
Star Strider
el 13 de Oct. de 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!
.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!