필터 지우기
필터 지우기

Deleting specific values from multidimensional matrix

조회 수: 1 (최근 30일)
okoth ochola
okoth ochola 2022년 6월 12일
답변: Image Analyst 2022년 6월 12일
I have a huge data which can be repersented as matrix of dimenson 34000 by 2. I would like to delete some rows that contains undesirable value(outliers). How can I go about this? Kindly assist, thank you

채택된 답변

Image Analyst
Image Analyst 2022년 6월 12일
That's far from huge. Anyway, determine which rows need to be deleted and then set those rows to null. For example if the undesireable rows are where the first column has negative numbers then do this
rowsToBeDeleted = data(:, 1) < 0;
data(rowsToBeDeleted, :) = []; % Set to null to remove the entire row.
Or, equivalently you could do
goodRows = data(:, 1) > 0;
data = data(goodRows, :); % Extract only the good rows.
Please invest 2 hours in the basics and it will save you time:

추가 답변 (0개)

카테고리

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