curve fitting toolbox
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm programming in matlab and using curve fitting toolbox to fit my data. I need to evaluate the 1th derivative of my curve in some data point. Do you know how I can do it in my code? I need to use 'cubic spline (interpolant) fitting'.
0 Kommentare
Akzeptierte Antwort
Sarah Wait Zaranek
am 18 Mär. 2011
The curvefit object you get out of curvefitting tool will allow you to take a derivative at a point using the differentiate method.
See code below. I generated a fit using the command line but it is the same thing you can get out of the curvefitting toolbox.
load census
f2 = fit(cdate,pop,'cubicinterp');
fx = differentiate(f2, 0.2)
2 Kommentare
Weitere Antworten (1)
SARAH ZAVAREH
am 21 Mär. 2011
2 Kommentare
Sarah Wait Zaranek
am 22 Mär. 2011
If you have the optimization toolbox, fzero probably would be ideal.
http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fzero.html
Siehe auch
Kategorien
Mehr zu Get Started with Curve Fitting Toolbox 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!