Count how many numbers are above -1 in matrix

조회 수: 1 (최근 30일)
Jung
Jung 2019년 11월 14일
편집: ME 2019년 11월 14일
Hello,
I have a large matrix which contains NSE value. I'd like to count how many cells there are with NSE values are above -1 and their location as well.
For instance if x = [0.1 -2 -3 0.3 -0.1 -84], there are 3 NSE values that are above -1 (0.1 0.3 and -0.1) and their locations are 1 4 5
Any help would be appreciated,

답변 (1개)

ME
ME 2019년 11월 14일
편집: ME 2019년 11월 14일
To find the locations of your values you can use
idx = find(x>-1);
And to get the values you can use
val = x(idx);

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by