Effacer les filtres
Effacer les filtres

How to do data selection from a graph to extract the evenly spaced data points ?

9 vues (au cours des 30 derniers jours)
Chin Kui Ku
Chin Kui Ku le 1 Août 2018
Commenté : KSSV le 1 Août 2018
Dear peers, i would like to select or extract the data that the Y axis is more than 0.001. and then select 60 points that are evenly spaced out in the selected graph area.
for eg: The original graph is generated by matlab simulink. and would like to select the data that are in the Red rectangle.
the outcome is expected as follow: 30 data points that evenly space (closet) that are selected from each peaks.
What is the best search method to find the evenly space data points? and i would use this algorithm for different graphs.
Thank you very much

Réponse acceptée

KSSV
KSSV le 1 Août 2018
Let X and Y be your data arrays.
N = 30 ;
xi = linspace(min(X),max(X),N) ;
yi = interp1(X,Y,xi) ;
plot(xi,yi)
axis([-100 100 0 0.04])
  2 commentaires
Chin Kui Ku
Chin Kui Ku le 1 Août 2018
thanks, I supposed that need to extract the X & Y data arrays for those points of Y>0.001. for left quadrant, and right quadrants.
and the xi & yi mentioned above are regenerated by matlab correct? however, i am interested in selecting the existing closest x & y evenly spaced points. any idea on how to do so?
KSSV
KSSV le 1 Août 2018
iwant = [X(Y>0.001) Y(Y>0.001)] ;

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graph and Network Algorithms 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