How can we plot time taken for execution of matlab ?

1 回表示 (過去 30 日間)
Aditya
Aditya 2014 年 2 月 18 日
編集済み: Walter Roberson 2014 年 2 月 18 日
How can we plot time taken for execution of matlab ?

回答 (1 件)

Walter Roberson
Walter Roberson 2014 年 2 月 18 日
編集済み: Walter Roberson 2014 年 2 月 18 日
tic
for K = 1 : 1000
... do whatever here
toctime(K) = toc;
end
plot(toctime)

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by