User`s guide

disp
4-96
4disp
Purpose Display descriptive information for Curve Fitting Toolbox objects
Syntax obj
disp(obj)
Arguments
Description
obj or disp(obj) displays descriptive information for obj. You can create obj
with the
fit or cfit function, the fitoptions function, or the fittype
function.
Example The display for a custom fit type object is shown below.
ftype = fittype('a*x^2+b*x+c+d*exp(-e*x)')
ftype =
General model:
ftype(a,b,c,d,e,x) = a*x^2+b*x+c+d*exp(-e*x)
The display for a fit options object is shown below.
fopts = fitoptions('Method','Nonlinear','Normalize','on')
fopts =
Normalize: 'on'
Exclude: []
Weights: []
Method: 'NonlinearLeastSquares'
Robust: 'Off'
StartPoint: []
Lower: []
Upper: []
Algorithm: 'Trust-Region'
DiffMinChange: 1e-008
DiffMaxChange: 0.1
Display: 'Notify'
MaxFunEvals: 600
MaxIter: 400
TolFun: 1e-006
TolX: 1e-006
obj
A Curve Fitting Toolbox object.