急!matlab中对正态分布积分

%x-N(0.03,0.01^2)
syms x y;
y=1./(sqrtm(2*pi)*0.01).*exp(-(x-0.03).^2/2*0.01^2);
int(y,0,inf);
一直提示:
??? Error: File: C:\MATLAB7\work\Untitled.m Line: 3 Column: 29
Missing variable or function.哪位高手帮忙解决下,在线等!

第1个回答  推荐于2018-04-23
syms x ;
>> y=1./(sqrtm(2*pi)*0.01).*exp(-(x-0.03).^2/2*0.01^2);
>> int(y,0,inf)

ans =

(8772833522256975*2^(1/2)*pi^(1/2)*(erf((3*20000^(1/2))/2000000) + 1))/4398046511104
你的表达式里有中文括号本回答被提问者和网友采纳
相似回答