Info

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

could anyone help me to find the solution for the following result

1 回表示 (過去 30 日間)
Prabha Kumaresan
Prabha Kumaresan 2018 年 4 月 17 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
output1 =
1.0e+08 *
0
0
0
0
1.4969
output1(:,:,2) =
1.0e+07 *
0
0
0
0
5.2715
output1(:,:,3) =
1.0e+07 *
0
0
0
0
4.5626
output1(:,:,4) =
1.0e+08 *
0
0
0
0
1.4911
output1(:,:,5) =
1.0e+08 *
0
0
0
0
1.5844
For the above result i want to find the maximum number of output1 array.could anyone help me to find the solution of it.

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 4 月 17 日

No that is not possible. Those values were output to the screen and now are gone.

You need to change your code to either save all of the versions of your array to take the maximum afterwards, or else to keep a running maximum.

output1_max = -inf;
...
output1_max = max(output1_max, output1(:));
  2 件のコメント
jaah navi
jaah navi 2018 年 4 月 17 日
when i used the command i am getting error stating Undefined function 'max' for input arguments of type 'cell'. Error in line
output1_max = max(output1_max, output1(:))
Walter Roberson
Walter Roberson 2018 年 4 月 17 日
Prabha is using a numeric output1. I have no idea what you are using.

Community Treasure Hunt

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

Start Hunting!

Translated by