Find set of all adjacent points that are close to each other

8 vues (au cours des 30 derniers jours)
Paul Hoffrichter
Paul Hoffrichter le 5 Juin 2020
I would like to find in Y[n] a set of adjacent points that are close to each other, but I don't get all the desired points. For example.
Y = [ 1.1 1.12 9.2 8.3 8.295 8.292 4.1 4.12 4.19];
dY_idx = find(abs(diff(Y)) < 0.022);
Y_adj_close = Y(dY_idx)
This code results in:
Y_adj_close =
1.1000 8.3000 8.2950 4.1000
But I would like the result to be:
Y_adj_close =
1.1000 1.1200 8.3000 8.2950 8.2920 4.1000 4.12
How can I get the desired result? (Note: I probably could also do a Y = fliplr(Y) followed by a second round and then combine results to get all the unique points, but that would be two sets of operations on a large vector. Hoping for a faster solution.)

Réponse acceptée

Tommy
Tommy le 5 Juin 2020
How about this?
logidx = abs(diff(Y)) < 0.022;
Y_adj_close = Y([logidx 0] | [0 logidx]);
Y_adj_close =
1.1000 1.1200 8.3000 8.2950 8.2920 4.1000 4.1200
  3 commentaires
Tommy
Tommy le 5 Juin 2020
You're very welcome, happy to help!
Paul Hoffrichter
Paul Hoffrichter le 6 Juin 2020
Modifié(e) : Paul Hoffrichter le 6 Juin 2020
My new question deals with my need to keep dimension of x and y the same. I forgot to mention that in this question. I used your answer here to work out an answer that works. Just wondering whether it can be modified to perform better.
Just using plot in the question to ensure dimensions match, and provide a quick sanity check.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Sparse Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by