MATLAB: Matrix manipulation and components

MATLABmatrixmatrix arraymatrix manipulation

Hi guys, I have a matrix A=random('norm',3,0.2,100,100) in which I want to display all the components that are >3.1 can someone help me out please 🙂

Best Answer

Is this what you're asking for?
A(A>3.1)
- Rob