Could you help me how Can I solve this integral?

1 次查看(过去 30 天)
I m solving of this manner, but I get the same integral:
Thank you for help me friends!

采纳的回答

Torsten
Torsten 2022-2-15
编辑:Torsten 2022-2-15
Use "vpaintegral" instead of "int":
syms x
expr(x) = sin(x)/x*exp(-3*x^2+i*x);
I = vpaintegral(expr,-10,10)
or directly
syms x
expr = sin(x)/x*exp(-3*x^2+i*x);
I = int(expr,-Inf,Inf)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by