how to find max value on matrix and mark it

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

采纳的回答

Stephen23
Stephen23 2022-12-31
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by