I have two column vectors of unequal lengths, calib
(75 elements) and nu
(1436 elements). I need to find the elements in nu
that match the elements in calib
to within a tolerance of 0.001, then perform operations on the resulting vector. All the elements are numbers not strings.
I thought intersect would be the way to go, but I don't see a way to introduce a tolerance. Also using a for loop with an absolute difference statement didn't seem to work.
Any help would be much appreciated.