필터 지우기
필터 지우기

How do I write a statement that will discard any values in an array if they are over a certain value?

조회 수: 3 (최근 30일)
I want to say that if my height variable is > 1 then not to return the value in my matrix?
  댓글 수: 3
Seth
Seth 2013년 5월 16일
I have a 73 x 1 array and in the column I only want to read in the row if the value is less than 1.. I have imported the file in by writing:
File = xlsread('Group B input.xlsx');
And I now want to say that matlab should only read in the values < 1
José-Luis
José-Luis 2013년 5월 16일
It is easier to import everything to Matlab and then do the processing. Alternatively you could preprocess in Excel if you are more comfortable doing that.

댓글을 달려면 로그인하십시오.

답변 (1개)

Ken Atwell
Ken Atwell 2013년 5월 16일
I think you're looking for logical indexing:
heights = .1:.3:2
heights < 1
heights(heights<1)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by