matlab 指数函数求导后的图像> x=[950:10:1620];F=0.002838*exp(-3.16*x)+0.08035*exp(0.01231*x);y=diff(F);plot(x,y)Error using ==> plotVectors must be the same lengths.需要怎么改才能输出图像matlab 编的
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/15 01:45:15
matlab 指数函数求导后的图像> x=[950:10:1620];F=0.002838*exp(-3.16*x)+0.08035*exp(0.01231*x);y=diff(F);plot(x,y)Error using ==> plotVectors must be the same lengths.需要怎么改才能输出图像matlab 编的
matlab 指数函数求导后的图像
> x=[950:10:1620];
F=0.002838*exp(-3.16*x)+0.08035*exp(0.01231*x);
y=diff(F);
plot(x,y)
Error using ==> plot
Vectors must be the same lengths.
需要怎么改才能输出图像
matlab 编的
matlab 指数函数求导后的图像> x=[950:10:1620];F=0.002838*exp(-3.16*x)+0.08035*exp(0.01231*x);y=diff(F);plot(x,y)Error using ==> plotVectors must be the same lengths.需要怎么改才能输出图像matlab 编的
x=[950:10:1620];
F=0.002838*exp(-3.16*x)+0.08035*exp(0.01231*x);
y=diff(F);
figure,
subplot(211),plot(x,F),grid on ,title('Orignal')
subplot(212)
plot(x(1:length(x)-1),y),grid on ,title('After diffrition')
详细的matlab操作过程 见 录像6.exe