How can we plot time taken for execution of matlab ?

4 vues (au cours des 30 derniers jours)
Aditya
Aditya le 18 Fév 2014
How can we plot time taken for execution of matlab ?

Réponses (1)

Walter Roberson
Walter Roberson le 18 Fév 2014
Modifié(e) : Walter Roberson le 18 Fév 2014
tic
for K = 1 : 1000
... do whatever here
toctime(K) = toc;
end
plot(toctime)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by