matlab 求积分>> syms x>> 1.788*x/(25+x^2)*exp(-(log(x/20)/0.316)^2)ans =447/250*x/(25+x^2)*exp(-62500/6241*log(1/20*x)^2)>> int(f,x,0,Inf)Warning:Explicit integral could not be found.> In sym.int at 58ans =int(447/250*x/(25+x^2)*(6121026901143963/
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/15 01:12:04
matlab 求积分>> syms x>> 1.788*x/(25+x^2)*exp(-(log(x/20)/0.316)^2)ans =447/250*x/(25+x^2)*exp(-62500/6241*log(1/20*x)^2)>> int(f,x,0,Inf)Warning:Explicit integral could not be found.> In sym.int at 58ans =int(447/250*x/(25+x^2)*(6121026901143963/
matlab 求积分
>> syms x
>> 1.788*x/(25+x^2)*exp(-(log(x/20)/0.316)^2)
ans =
447/250*x/(25+x^2)*exp(-62500/6241*log(1/20*x)^2)
>> int(f,x,0,Inf)
Warning:Explicit integral could not be found.
> In sym.int at 58
ans =
int(447/250*x/(25+x^2)*(6121026901143963/2251799813685248)^(-62500/6241*log(1/20*x)^2),x = 0 ..Inf)
matlab 求积分>> syms x>> 1.788*x/(25+x^2)*exp(-(log(x/20)/0.316)^2)ans =447/250*x/(25+x^2)*exp(-62500/6241*log(1/20*x)^2)>> int(f,x,0,Inf)Warning:Explicit integral could not be found.> In sym.int at 58ans =int(447/250*x/(25+x^2)*(6121026901143963/
>> syms x
f=1.788*x/(25+x^2)*exp(-(log(x/20)/0.316)^2);
I=int(f,x,0,inf);
double(I)
ans =
0.9376
>>