Extracting number in array at certain threshold and determine its position

조회 수: 2 (최근 30일)
Suppose that i have an array, i want to extract the number that higher than 5 and i want to know their position too. how can i do it? Thanks in advance!!
X=[10 8 6 7 8 4 12]

채택된 답변

David Fletcher
David Fletcher 2021년 5월 7일
X=[10 8 6 7 8 4 12]
index=find(X>5)
values=X(index)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by