checking value greater than threshold

조회 수: 2 (최근 30일)
Rocky
Rocky 2020년 4월 15일
댓글: Rocky 2020년 4월 16일
A=[10 42 55;63 52 81;30 52 14];
k=A(A>50);
Hello everyone.From this code i got output as
k=
63
52
52
55
81
But I want like this [0 0 55; 63 52 81; 0 52 0]..can anyone suggest me how to get this..Your help is appreciated.
Thanks in advance...

채택된 답변

Stephen23
Stephen23 2020년 4월 15일
>> A = [10,42,55;63,52,81;30,52,14];
>> k = A.*(A>50)
k =
0 0 55
63 52 81
0 52 0

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by