Filter löschen
Filter löschen

Finding corresponding interpolated x values for defined y values

1 Ansicht (letzte 30 Tage)
Hi all,
I have obtained data and plotted it. I then interpolated it via spline interpolation and everything works fine. However, I would like to obtain precise values for the t2 (i.e. the interpolated x values) coordinates at say 10%, 20%, 30% etc., of the maximum y2 (i.e. interpolated y values) value.
The answer I obtain is
ans =
Empty matrix: 1-by-0
Please see the code below. I hope you can help.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
x = KE_data(:,1);
y = KE_data(:,2);
t2 = -20.5005:0.00002457:-20.2548;
y2=interp1(x,y,t2);
max_y2 = 0.1*max(y2);
t2((y2==max_y2))

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 3 Nov. 2011

Weitere Antworten (0)

Kategorien

Mehr zu Interpolation 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!

Translated by