MATLAB 求程序错误在哪??
x=-10:0.1:10; y=((x.^2+2*x-3).*exp(1/x))./((x.^2-1).*arctan(x)); plot(x,y),grid on
x=-10:0.1:10; y=((x.^2+2*x-3).*exp(1/x))./((x.^2-1).*arctan(x)); plot(x,y),grid on
答案:y=((x.^2+2*x-3).*exp(1./x))./((x.^2-1).*atan(x));
指数那里少了一个点,而且是atan(x),没有那个函数
x=-10:0.1:10;
y=((x.^2+2*x-3).*exp(1./x))./((x.^2-1).*atan(x));
plot(x,y),grid on