putting a threshold into array values

I have an array like this:
and I would like to create a function that as an output would return smaller array, with a given threshold for 2nd column so for example I could put threshold 0.1, and based on this screenshot as I return I'd have:
result = [15 0.2249; 49 0.1674; 50 0.5343]
P.S I wouldn't mind to change format into table,
thanks in advance

 채택된 답변

SALAH ALRABEEI
SALAH ALRABEEI 2021년 6월 5일
편집: SALAH ALRABEEI 2021년 6월 5일

1 개 추천

Assume your matrix is A, and b is the threshold
% code
B= A(A(:,2)>b,:);

추가 답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 6월 5일

1 개 추천

Use this logical indexing operation:
OUT = result_Hygepdf((result_Hygepdf(:,2)>0.1), 2);

카테고리

도움말 센터File Exchange에서 Data Types에 대해 자세히 알아보기

제품

릴리스

R2020b

질문:

M
M
2021년 6월 5일

편집:

2021년 6월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by