how to find max value on matrix and mark it

조회 수: 4 (최근 30일)
Risma Fitriyani
Risma Fitriyani 2022년 12월 31일
답변: Stephen23 2022년 12월 31일
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에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by