How to select a range of data in matrix

조회 수: 20 (최근 30일)
Austin Ukpebor
Austin Ukpebor 2021년 1월 13일
댓글: Austin Ukpebor 2021년 1월 13일
I have a column matrix (10608x1) with a minimum value of 38.8 and maximum value of 192.8. I want to retain the matrix with the range of minimum values to a certain number say 44.1. Please I need a help to achieve this. Thanks

채택된 답변

KSSV
KSSV 2021년 1월 13일
Let A be your column matrix.
idx = A <= 44.1 ; % get indices using logical indexing
iwant = A(idx) ; % Extract those elements
Read about logical indexing of arrays in MATLAB.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by