how to find max value on matrix and mark it

5 visualizaciones (últimos 30 días)
Risma Fitriyani
Risma Fitriyani el 31 de Dic. de 2022
Respondida: Stephen23 el 31 de Dic. de 2022
A = [1 2 3; 2 4 2; 6 4 3] if A is a matrix, how to find max value on A and mark the max value with 1? the output would be like = [0 0 0; 0 0 0; 1 0 0]. does anyone know how to do that? thanks in advance.

Respuesta aceptada

Stephen23
Stephen23 el 31 de Dic. de 2022
A = [1,2,3;2,4,2;6,4,3];
B = A==max(A(:))
B = 3×3 logical array
0 0 0 0 0 0 1 0 0

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by