calculating the time
3 ビュー (過去 30 日間)
古いコメントを表示
I have a code which runs for 10 iterations in this i want to calculate the time for each iteration and find the minimum time for iteration,please help
0 件のコメント
採用された回答
Wayne King
2012 年 5 月 22 日
You can use tic and toc.
t = zeros(1,100);
for n = 1:100
A = rand(n,n);
b = rand(n,1);
tic
x = A\b;
t(n) = toc;
end
[mintime,I] = min(t);
2 件のコメント
その他の回答 (1 件)
Wayne King
2012 年 5 月 22 日
Just save the CR values in a vector, then query which one is the max
3 件のコメント
Jan
2012 年 5 月 22 日
Dear kash, there is no reason for shouting.
"but not getting the result" is vague. I guess you get a detailed error message instead, because you try to assign the array CR to one of its elements. This is not possible for obvious reasons.
But the questions about the compression ratio do not concern the original question, such that it it recommended to open a new thread. Otherwise it gets impossible to accept the best answer.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!