Имена коэффициентов cfit, sfit, или fittype объект
coeffs = coeffnames(fun)
coeffs = coeffnames(fun) возвращает имена коэффициентов (параметров) cfit, sfit, или fittype fun объекта как n-by-1 массив ячеек из векторов символов coeffs, где n = numcoeffs(fun).
f = fittype('a*x^2+b*exp(n*x)');
ncoeffs = numcoeffs(f)
ncoeffs =
3
coeffs = coeffnames(f)
coeffs =
'a'
'b'
'n'coeffvalues | fittype | formula | numcoeffs | probnames