editcoeff opens the Matlab's Array Editor to edit the coefficients
of the last fit (which is stored in the variable 'lastfit'). This may
be useful to copy/paste the fit coefficients into a spreadsheet
(see the setting 'coeffarray' in fitparam to change the row/column
display).
editcoeff is also available from the item 'Edit Fit Coefficients' in
the EzyFit menu, and can be automatically called after each fit (see
the setting 'editcoeffmode' in fitparam).
editcoeff(F) opens the Matlab's Array Editor to edit the coefficients
of the fit F. (F is a fit structure as returned by ezfit or showfit).
C = editcoeff(...) returns a 2xN cell array, containing the
coefficients names and values.
Example
plotsample('power');
f = ezfit('power');
editcoeff(f);
See Also
ezfit, showfit, efmenu, fitparam, makevarfit, OPENVAR.
Published output in the Help browser
showdemo editcoeff