matlab中关于EXP的错误 急啊x=(0:0.1:2);y1=(1/sqrt(2*pi))*(exp^(-(x^2)/2));h1=subplot(2,2,1);plot(x,y1)title('标准正态分布的概率密度曲线') 运行说是? Error using ==> expNot enough input arguments.Error in ==> Untitled3 at 2y1=(1
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/01 09:25:25
matlab中关于EXP的错误 急啊x=(0:0.1:2);y1=(1/sqrt(2*pi))*(exp^(-(x^2)/2));h1=subplot(2,2,1);plot(x,y1)title('标准正态分布的概率密度曲线') 运行说是? Error using ==> expNot enough input arguments.Error in ==> Untitled3 at 2y1=(1
matlab中关于EXP的错误 急啊
x=(0:0.1:2);
y1=(1/sqrt(2*pi))*(exp^(-(x^2)/2));
h1=subplot(2,2,1);
plot(x,y1)
title('标准正态分布的概率密度曲线')
运行说是? Error using ==> exp
Not enough input arguments.
Error in ==> Untitled3 at 2
y1=(1/sqrt(2*pi))*(exp^(-(x^2)/2));
大虾们说下啊
matlab中关于EXP的错误 急啊x=(0:0.1:2);y1=(1/sqrt(2*pi))*(exp^(-(x^2)/2));h1=subplot(2,2,1);plot(x,y1)title('标准正态分布的概率密度曲线') 运行说是? Error using ==> expNot enough input arguments.Error in ==> Untitled3 at 2y1=(1
exp是函数,exp(a)就表示e的a次方,不需要^
把你程序里exp后面那个^去掉就可以了
还有,因为x是数组(即向量),所以诸如x^2之类是没有意义的,应该换成x.^2,表示数组里每个元素进行平方.