How can I find it?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Furkan Ozkan
am 22 Jun. 2021
Kommentiert: Furkan Ozkan
am 22 Jun. 2021
how can I find f(-0,3) on matlab?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Jun. 2021
There is not just one answer: it depends upon what model function you use
x = [-0.4, 0, 0.4, 0.8, 1.2]
fx = [-0.204, -0.07, -0.006, 0.442, 1.658]
fx03 = interp1(x, fx, -0.3)
fx03s = interp1(x, fx, -0.3, 'spline')
p3 = polyfit(x, fx, 3);
fx03p3 = polyval(p3, -0.3)
The cubic fit looks pretty good.
Weitere Antworten (1)
Chunru
am 22 Jun. 2021
You can use interp1 to interpolate. 'doc interp1' for more details.
x = [-0.4 0 0.4 0.8 1.2];
f = [-0.204 -0.07 -0.006 0.442 1.658];
y = interp1(x, f, -0.3)
0 Kommentare
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!