| Contents | Index |
To interactively fit a curve, follow the steps in this simple example:
Load some data at the MATLAB command line.
load hahn1
Open Curve Fitting Tool. Enter:
cftool
In Curve Fitting Tool, select X Data and Y Data.
Curve Fitting Tool creates a default interpolation fit to the data.
Choose a different model type using the fit category drop-down list, e.g., select Polynomial.
Try different fit options for your chosen model type.
Select File > Generate Code.
Curve Fitting Tool creates a file in the Editor containing MATLAB code to recreate all fits and plots in your interactive session.
See Interactive Fitting for information on the following topics:
Fitting a curve
Selecting fit settings
Creating multiple fits
Comparing fits
Generating code files and exporting fits to the workspace
For details and examples of specific model types and fit analysis, see the following sections:
To programmatically fit a curve, follow the steps in this simple example:
Load some data.
load hahn1
Create a fit using the fit function, specifying the variables and a model type (in this case rat23 is the model type).
f = fit( temp, thermex, 'rat23' )
Plot your fit and the data.
plot( f, temp, thermex ) f( 600 )
See these sections:
For details and examples of specific model types and fit analysis, see the following sections:
![]() | Product Overview | Surface Fitting | ![]() |
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |