Calculate integral from eular formula
Afficher commentaires plus anciens
How to use matlab to calculate this integral:integral(x=-10 to 0) sin(x) exp(x) exp(-ix) + integral(x = 0 to 10) sin(x) exp(-x) exp(-ix)
1 commentaire
John D'Errico
le 9 Août 2021
PLEASE STOP ASKING THIS SAME QUESTION. This is the 9'th time you have asked it.
You are now becoming a spammer on the site.
Réponses (1)
syms x
part1 = int(sin(x)*exp(x)*exp(-1i*x), x, -10, 0)
part2 = int(sin(x)*exp(-x)*exp(-1i*x), x, 0, 10)
overall1 = simplify(part1 + part2)
or...
syms x
overall2 = simplify(int(sin(x)*exp(-abs(x))*exp(-1i*x), x, -10, 10))
isAlways(overall1 == overall2)
2 commentaires
Chris Lin
le 9 Août 2021
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!