Delete rows from an array with values from multiple columns with the same condition

조회 수: 8 (최근 30일)
I have a 39801x7 array. I want to keep any row of data where is there is a value less than -5 or greater than 5 that the row of data will be kept. I have done the code below but it only does it for column 7 and not all columns. I would like to know what I am doing wrong.
a is the 39801x7 array
for i = 1:7
A1 = a(a(:,i) <= -5 | a(:,i) >= 5 , :);
end

채택된 답변

Walter Roberson
Walter Roberson 2019년 2월 23일
mask = any(a <= -5 | a >= 5, 2);
A1 = a(mask,:);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by