Skip to content

Commit

Permalink
Fix integration of Fresnel functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Raoul Bourquin committed May 12, 2012
1 parent d26024f commit a44422f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions sympy/integrals/meijerint.py
Expand Up @@ -179,10 +179,8 @@ def make_log3(subs):
# TODO exp(-x)*erf(I*x) does not work

# Fresnel Integrals
add(fresnels(t), [], [1], [S(3)/4], [S(1)/4, 0], -pi**2*t**4/16,
pi*t**(S(9)/4)/(sqrt(2)*(t**2)**(S(3)/4)*(-t)**(S(3)/4)))
add(fresnelc(t), [], [1], [S(1)/4], [S(3)/4, 0], -pi**2*t**4/16,
pi*t**(S(3)/4)/(sqrt(2)*(t**2)**(S(1)/4)*(-t)**(S(1)/4)))
add(fresnels(t), [1], [], [S(3)/4], [0, S(1)/4], pi**2*t**4/16, S(1)/2)
add(fresnelc(t), [1], [], [S(1)/4], [0, S(3)/4], pi**2*t**4/16, S(1)/2)

##### bessel-type functions #####
from sympy import besselj, bessely, besseli, besselk
Expand Down

0 comments on commit a44422f

Please sign in to comment.