How to create function handle from fit struct after using curve fitting toolbox?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have this struct as result of my curve fitting toolbox, now I need to create a function handle based on my spline coefficients. Can any one help?
0 Kommentare
Antworten (4)
Stephan
am 13 Jul. 2018
Hi,
Why do you need this? You can directly compute new values for your fitresult:
y_new = fitresult(x_new)
This returns the vector corresponding to x_new, which should exactly be the result you expect from a function handle.
Best regards
Stephan
1 Kommentar
Stephan
am 13 Jul. 2018
Bearbeitet: Stephan
am 13 Jul. 2018
Iam not in the near of my computer to test it, but i think this should work:
f = @(x)fitresult(x)
ga should accept this function handle i think.
You can test:
y_expected = f(x_known)
If this returns the correct value for y you are fine.
Best regards
Stephan
Siehe auch
Kategorien
Mehr zu Get Started with Curve Fitting Toolbox 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!