checking value greater than threshold

2 views (last 30 days)
Rocky
Rocky on 15 Apr 2020
Commented: Rocky on 16 Apr 2020
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...

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!