User`s guide

set
4-127
Example Create a custom nonlinear model, and create a default fit options object for the
model.
mymodel = fittype('a*x^2+b*exp(n*c*x)','prob','n');
opts = fitoptions(mymodel);
Configure the Robust and Normalize properties using property name/property
value pairs.
set(opts,'Robust','LAR','Normalize','On')
Configure the Display, Lower, and Algorithm properties using cell arrays of
property names and property values.
set(opts,{'Disp','Low','Alg'},{'Final',[0 0 0],'Levenberg'})
See Also fitoptions, get