How to plot the execution time for a Matlab code?

12 ビュー (過去 30 日間)
nassima bekhoucha
nassima bekhoucha 2020 年 5 月 17 日
コメント済み: Walter Roberson 2020 年 5 月 17 日
I have calculated the computation time of my simulation model by using 'tic & toc' instruction .now I want to show a graph of computational time. How can I plot that graph.
Thank you very much, any help is much appreciated
  2 件のコメント
Stanislao Pinzón
Stanislao Pinzón 2020 年 5 月 17 日
I suppose you have some procedure between the instructions. For example, if a loop existed in that procedure one way would be.
tic;
A = [1 5 4 8 3];
T = zeros(length(A));
for i=1:length(A)
B = A(i)^2;
% Any procedure
T(i) = toc;
end
plot(T);
Walter Roberson
Walter Roberson 2020 年 5 月 17 日
in the case where the time is dependent on the contents of A, use A as the x axes
for i=1:length(A)
tic;
b = inv(rand(A(i)) ;
T(i) = toc;
end
plot(A, T)

サインインしてコメントする。

回答 (0 件)

カテゴリ

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

製品


リリース

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by