Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Prabha Kumaresan
Prabha Kumaresan le 17 Avr 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
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.

Réponses (1)

Walter Roberson
Walter Roberson le 17 Avr 2018

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 commentaires
jaah navi
jaah navi le 17 Avr 2018
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 le 17 Avr 2018
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