myfunc = inline('beta(1)*exp(beta(2)*x)+beta(3)','beta','x');beat = nlinfit(x,T,myfunc,[0 0 0]);x2 = 0:0.1:20;y2 = beat(1)*exp(beat(2)+x2)+beat(3);plot(x,T,'o',x2,y2);
撒打算大苏打
只要将x和y的值带进去,求解方程组就可以啦