Main Content

argnames

Input argument names ofcfit,sfit, orfittypeobject

Syntax

args = argnames(fun)

Description

args = argnames(fun)returns the input argument (variable and coefficient) names of thecfit,sfit, orfittypeobjectfunas ann-by-1 cell array of character vectorsargs, wheren = numargs(fun).

Examples

f = fittype('a*x^2+b*exp(n*x)'); nargs = numargs(f) nargs = 4 args = argnames(f) args = 'a' 'b' 'n' 'x'

Version History

Introduced in R2006b