How can we plot time taken for execution of matlab ?

4 Ansichten (letzte 30 Tage)
Aditya
Aditya am 18 Feb. 2014
Bearbeitet: Walter Roberson am 18 Feb. 2014
How can we plot time taken for execution of matlab ?

Antworten (1)

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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by