필터 지우기
필터 지우기

Could you help me how Can I solve this integral?

조회 수: 1 (최근 30일)
Lewis HC
Lewis HC 2022년 2월 15일
편집: Torsten 2022년 2월 15일
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