Interpolation of a set of x , y data to a curve
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
saeid haghighipour
am 19 Okt. 2019
Kommentiert: Image Analyst
am 19 Okt. 2019
I want to interpolate a set of data which are x , y points of a hystersis plot.
please help me how can I find best interpolation in such case and after that how can I find it's slope to find knee point?
thanks!
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 19 Okt. 2019
Start by running my spline demo. Adapt as needed.
2 Kommentare
Image Analyst
am 19 Okt. 2019
Did you mean Y instead of X? I'm thinking so. If so, try this:
indexes = Y(2:end) > 1.5 * Y(1:end-1);
Y(indexes) = 1.1 * Y(indexes - 1);
If you really meant what you said, then replace Y by X in the first equation:
indexes = X(2:end) > 1.5 * X(1:end-1);
Y(indexes) = 1.1 * Y(indexes - 1);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spline Postprocessing 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!