MATLAB: How to solve integral in matlab

integration

Dear all
Can anyone help me to solve the following integral by using definite integration function i.e int(f,x) in matlab
I am looking forward to your help
With best wishes
zahid khan

Best Answer

syms x
value=int(1/sqrt(2*Pi)*exp(-x^2/2),x,-Inf,Inf)
Best wishes
Torsten.
Related Question