Could you help me how Can I solve this integral?

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일

1 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

질문:

2022년 2월 15일

편집:

2022년 2월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by