MATLAB: A(B)=0 What is its meaning

a(b)=0MATLAB

A=rand(5)
B=A>0.8
A(B)=0
Can you tell me what is A(B)=0 meaning?

Best Answer

B is a logical index matrix. You can see the value is 1 (true) or 0 (false) wherever the corresponding value in A is greater than 0.8.
A(B)=0 means for all those places where B's value is true, set the corresponding value in A to 0.
Use this example to see it better.
A=magic(5)
B=A>10
A(B)=0