Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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(:))

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by