editcoeff opens the Matlab's Array Editor to edit the coefficients
of the last fit (which is stored in the variable 'lastfit').
editcoeff(F) opens the Matlab's Array Editor to edit the coefficients
of the fit F. (F is a fit structure as returned by fit or showfit). See
the settings in fitparam to change the row/column display.
C = editcoeff(...) returns a 2xN cell array, containing the
coefficients names and values.
editcoeff is also available from the item 'Edit Fit Coefficients' in
the EzyFit menu (see efmenu), and can be automatically called after
a fit (see the settings in fitparam).
Example:
plotsample('power');
f = fit('power');
editcoeff(f);
See Also
fit, showfit, selectfit, efmenu, fitparam, makevarfit, OPENVAR.