About maximum value in matrix
Mostrar comentarios más antiguos
I have a problem regarding finding a maximum value from my matrix (largest element in the row)
I have matrix A shown bellow

I know that I can use
M=max(A,[],2)
Then I will get matrix M such that

But the answer I want is not that, what I want is that . The one that I want is

The answer that I want is the maximum value of each row ignoring the negativity of each value like shown in the matrix above.
I hope my question is clear enough.
Respuesta aceptada
Más respuestas (1)
Fangjun Jiang
el 6 de Ag. de 2018
0 votos
use abs() and note that the second return of max() gives the indices. See if you can figure it out.
1 comentario
Mohamad Agung Prawira Negara
el 6 de Ag. de 2018
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!