调用拟合好的函数

Matlab 2016要调用一个拟合好的函数非常简单: f = fittype(‘a*x^2+b*exp(n*x)’)  %给出函数 f =      General model:        f(a,b,n,x) = a*x^2+b*exp(n*x) c = cfit(f,1,10.3,-1e2)         %给出相应参数,返回函数值 c […]