-1

There's a warning when I tried to do an integration with MATLAB!

syms z
int(exp(sin(z)),z)

Warning: Explicit integral could not be found.

Cris Luengo
  • 55,762
  • 10
  • 62
  • 120

1 Answers1

4

The expression exp(sin(x)) does not have a known analytical formula for it's indefinite integral. Mathematica agrees with Matlab on this: http://m.wolframalpha.com/input/?i=Integral+e%5Esin%5Bx%5D+dx.

While you can't evaluate the indefinite integral, you can compute definite integrals numerically to an arbitrary precision.

Mad Physicist
  • 107,652
  • 25
  • 181
  • 264