how to find max value on matrix and mark it

3 ビュー (過去 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 Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by