please help, I want to make comparative loop

1 回表示 (過去 30 日間)
Brwa
Brwa 2013 年 5 月 24 日
Hi everyone, I have 2 problems.
1-I want to plot a figure for each value of y its mean i should have 10 figures, i tried many cases but i only got 1 figure.
2- i want to get max(y) for each iteration. then max y for all iteration and i want to know the max y belong to which step.
M = eye(2,2);
C = [ 2 3; 1 5];
t = 1:1:10
for i = 1:1:10
y = M * C
plot (t, y)
y1 = max(y)
y2 = max(y1(1,:)) % scalar
end
y3 = max(y2) % this is the max among all values of y for all steps
% for y3 i want to know its belong to which row in y2 ?
Thanks for your help, your help always appreciated

採用された回答

Walter Roberson
Walter Roberson 2013 年 5 月 24 日
1) Before your plot() call, insert
figure();
2)
In the loop,
y2(i) = max(y1(1,:));
After the loop,
[y3, y3row] = max(y2);
  6 件のコメント
Brwa
Brwa 2013 年 5 月 25 日
so, how can i change it ? Sorry Im new in matlab.
in the example i just right down one matrix for C but actually i got C from another loop so its more than one matrix. does this program always use one of C matrices or each time will change C?
Image Analyst
Image Analyst 2013 年 5 月 29 日
The way you wrote the code, there is only one C so it will use only that one C.

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

その他の回答 (1 件)

Brwa
Brwa 2013 年 5 月 24 日
Thank you Mr Walter Roberson, both of them works well.
thanks alot, wish you the best

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by