Plotting values without the zero values?

Hi i am trying to calculate the time for solving Ax=b and the time it takes depending on the size of n x n matrices. But when i am plotting the graf the zero values in the array is plotted in the figure which makes the figure look like diffrent stapels instead of a line. Any suggestions i am so stuck. Thank you!
t = zeros(1,500);
for n = 100:10:500
A = rand(n,n);
b = rand(n,1);
tic;
x = A\b;
t(n) = toc;
end
plot(t)

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 2 月 18 日

1 投票

I suggest that you use timeit().
Also in my experience the times can vary a fair bit, so I recommend using timeit in a loop to record multiple times at the same size

カテゴリ

ヘルプ センター および File ExchangeGraphics Performance についてさらに検索

質問済み:

2017 年 2 月 18 日

回答済み:

2017 年 2 月 18 日

Community Treasure Hunt

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

Start Hunting!

Translated by