Borrar filtros
Borrar filtros

Could you help me how Can I solve this integral?

1 visualización (últimos 30 días)
Lewis HC
Lewis HC el 15 de Feb. de 2022
Editada: Torsten el 15 de Feb. de 2022
I m solving of this manner, but I get the same integral:
Thank you for help me friends!

Respuesta aceptada

Torsten
Torsten el 15 de Feb. de 2022
Editada: Torsten el 15 de Feb. de 2022
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)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by