matrix manipulation and components

1 view (last 30 days)
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 :)

Accepted Answer

John Doe
John Doe on 9 May 2013
Edited: John Doe on 9 May 2013
Is this what you're asking for?
A(A>3.1)
- Rob

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 9 May 2013
Edited: Azzi Abdelmalek on 9 May 2013
out=A(A>3.1)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!