How to find the indices of a point on a curve
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi I have a curve with one maximum,I need to find the indices of the the two 0.707 points. Thanks
0 Kommentare
Antworten (3)
dpb
am 28 Okt. 2015
If you have the curve as computed points, see
doc interp1
Switch the normal X,Y meanings to interpolate with Y as the independent variable instead of X in this case. Also, NB: You'll need to do this in two separate calls, one with the values to the left and another with those to the right of the maximum as interp1 must have unique values for the interpolating function.
This will solve for the precise location; not necessarily integer. If you want the nearest index, then either a) round the above results or b) use
[~,ix]=min(abs(y-sqrt(2)/2*ymax));
Again you'll have to do the above piecewise accounting for the length of the subvectors in the returned indices as there's no guarantee the locations will be symmetric or the same on both sides except under very particular circumstances.
3 Kommentare
Thorsten
am 29 Okt. 2015
Bearbeitet: Thorsten
am 29 Okt. 2015
If y is your curve, in general you will not have values that are exactly 0.707 of your maximum. So the idea is to use the 2 values that differ the least from the desired value 0.707*max(y):
[~, idx] = sort(abs(y-0.707*max(y)));
idx = idx(1:2);
4 Kommentare
Thorsten
am 29 Okt. 2015
Bearbeitet: Thorsten
am 29 Okt. 2015
I see. These are the index values into your x. So if you have
x = -90:0.5:90;
x707 = x(idx)
x([64 96])
ans =
-58.50 -42.50
Note that I figured out x=-90:0.5:90 by eye and trial and error from your plot. You have to use the actual values of x of course.
Siehe auch
Kategorien
Mehr zu Interpolation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!