matlab程序为什么运行不起来?
其原因是没有自定义被积函数。即应为
func=@(x) exp(-x.^2).*log(x).^2;
完整的代码:
>> func=@(x) exp(-x.^2).*log(x).^2;
>> y=integral(func,0,Inf)