Remove similar values from matrix with tolerance value
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Guillaume
am 30 Jun. 2019
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.
Antworten (1)
KSSV
am 28 Jun. 2019
Read about pdist2. This will give pairwise distance . Now remove the points which you want to rmove by setting a tolerance in distance.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!