Remove rows in a matrix where there isn't a change larger than 3 in either column

조회 수: 2 (최근 30일)
I have a 225x2 matrix where the first 200 rows or so (it varies by data set) does not change by more than 3 in either column. I need a function to delete all of the rows where there isn't a change greater than 3 and then condense the matrix.

답변 (1개)

Image Analyst
Image Analyst 2023년 4월 6일
Do you mean a change between the first column and second column in each row?
Try this
changes = m(:, 2) - m(:, 1); % Change from col 1 to col 2.
rowsToDelete = changes > 3;
m = m(~rowsToDelete, :);
  댓글 수: 3
Dyuman Joshi
Dyuman Joshi 2023년 4월 6일
In the example you mentioned, both columns in the 2nd row don't change by more than 3 from the 1st row.
Now, do you want to remove the 2nd row, and compare the 3rd row to the first? Or do you want to compare the 3rd row to the 2nd one?
Image Analyst
Image Analyst 2023년 4월 6일
You forgot to give the output. Is the first row to be deleted too? Or just the second and third row?
m = [...
1000 520
1000 521
1001 519
800 250
324 104];
changes = diff(m, 1) % Change from one row to the next
changes = 4×2
0 1 1 -2 -201 -269 -476 -146
rowsToDelete = [0; any(changes >= 0 & changes < 3, 2)]
rowsToDelete = 5×1
0 1 1 0 0
m = m(~rowsToDelete, :)
m = 3×2
1000 520 800 250 324 104

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

카테고리

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

태그

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by