is there any command to find a maximum value of a matrix containing negative numbers also ??

18 vues (au cours des 30 derniers jours)
x =
-1 -1 -1 -1 0 -1 23 19
i need to find a maximum value for this. can i get a single line command ??

Réponses (4)

Iain
Iain le 6 Juin 2013
No single line command, but
largest_val = (-min(x) < max(x))*(max(x)-min(x))+min(x);
is cheeky and it preserves the sign.

Jan
Jan le 6 Juin 2013
Modifié(e) : Jan le 6 Juin 2013
You need the "maximum value". Then there is no reason for ABS, but you can call simply:
result = max(x)

Andreas Goser
Andreas Goser le 17 Mai 2013
Not sure if
max(abs())
counts as single command for you...
  2 commentaires
Manikanta Prasanth
Manikanta Prasanth le 17 Mai 2013
thank you Mr. Andreas for the reply. But, i should not use abs in my case. Is there any alternative ??
Andreas Goser
Andreas Goser le 17 Mai 2013
"I should not" because of a good technical reason or just because someone told you / this is part of a homework? I can think of sorting the values first and then take the largest of the (1) and (end) values.

Connectez-vous pour commenter.


Daniel Shub
Daniel Shub le 6 Juin 2013
What about
sqrt(max(x(:).^2))

Community Treasure Hunt

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

Start Hunting!

Translated by