Info

この質問は閉じられています。 編集または回答するには再度開いてください。

can you help me to ploting the number of operations and time of execution

1 回表示 (過去 30 日間)
ime sem
ime sem 2014 年 1 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
function pgdA
n=1000;
i=45;
while mod(n, i)~=0;
i=i-1;
end
flops mod(n,i);
plot mod(n,i);
  3 件のコメント
Walter Roberson
Walter Roberson 2014 年 1 月 21 日
"flops" is "floating point operations per second". There was a time when it had meaning in computers, but it does not have much meaning now.
Walter Roberson
Walter Roberson 2014 年 1 月 21 日
As I have indicated in multiple posts, "flops", floating point operations per second, is not meaningful in modern computers, and there is no way to calculate it now.
If, though, you wanted to count "actions" like you did in http://www.mathworks.co.uk/matlabcentral/answers/105512-plotting-the-number-of-actions-for-ex-i-i-1-action-pgd-n-i-action-pgd-n-action then we might be able to help you, provided that you indicate all the different "actions" that you want to be counted individually.
Please note that your code has nothing to do with finding "mod", and is instead an algorithm for finding the greatest divisor of "n" that is at most "i"; with those particular values it would be 25 that would be left for "i"

回答 (1 件)

Paul
Paul 2014 年 1 月 21 日
Do you mean something like this:
n=10000;
i=47;
j=0;
while mod(n, i)~=0;
if(j==0)
tic
end
i=i-1;
j=j+1;
t(j)=toc;
tic
end
j=1:j;
plot(j,t),xlabel('iteration number'),ylabel('time [s]');

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by