How to index a random matrix with set conditions?

조회 수: 1 (최근 30일)
adena0
adena0 2019년 1월 14일
답변: Are Mjaavatten 2019년 1월 14일
How can I find elements within a random matrix M (5x5) that are negative or are between 20 and 40?

채택된 답변

Are Mjaavatten
Are Mjaavatten 2019년 1월 14일
For a list of the negative values:
negM = M(M<0)
For the indices of the negative values:
[i,j] = find(M<0)
To display only the negative values in a matrix:
N = M;
N(N>=0) = 0
For values between 20 and 40
values = M(M>=20 & M<=40)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by