Remove similar values from matrix with tolerance value
이전 댓글 표시
Help me please. I have this matrix, and I want to remove element (32,11) and (32,14) because it is close with (32,12). Can I do that?
Thank you.

댓글 수: 4
Azzi Abdelmalek
2019년 6월 28일
You have to explain what is the meaning of close, (32,14) is close to (32,12), what about (37,20), is it close too ?
don't post your data as an image, we can't copy your data for testing
Dina Maulina
2019년 6월 30일
Guillaume
2019년 6월 30일
a few difference is not something easy to code. Computers are not able to read your mind or guess what a few difference is. Is 1 a few? Is 10 a few? Is 0.1 a few? Is 1 million a few (it might be compared to the number of atoms in the universe)?
An actual numeric tolerance (relative or absolute), on the other hand, is very easy to code.
Dina Maulina
2019년 6월 30일
답변 (1개)
KSSV
2019년 6월 28일
0 개 추천
Read about pdist2. This will give pairwise distance . Now remove the points which you want to rmove by setting a tolerance in distance.
카테고리
도움말 센터 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!