How can we plot time taken for execution of matlab ?

1 visualizzazione (ultimi 30 giorni)
How can we plot time taken for execution of matlab ?

Risposte (1)

Walter Roberson
Walter Roberson il 18 Feb 2014
Modificato: Walter Roberson il 18 Feb 2014
tic
for K = 1 : 1000
... do whatever here
toctime(K) = toc;
end
plot(toctime)

Categorie

Scopri di più su Graphics Objects in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by