필터 지우기
필터 지우기

How do I do a logic check to see if one or more entries in an array is below a certain value?

조회 수: 1 (최근 30일)
I have a 2 column matrix, with the first column being dates and the second column being Fan Speed. I want to have a script search through the column and anytime it finds a fan speed below 8,000 it displays the date corresponding to from the first column. The fan speed is stored as Fan.data(:,2) and the dates are Fan.data(:,1). Can anyone help?

채택된 답변

Adam
Adam 2017년 6월 16일
logicalIdx = Fan.data(:,2) < 8000;
dates = Fan.data(logicalIdx,1);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by