Daniele Nicolodi
unread,Nov 1, 2017, 7:54:55 PM11/1/17Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sympy
Hello,
this comes rather unexpected:
>>> from sympy import fourier_transform
>>> from sympy.abc import x, y
>>> fourier_transform(1, x, y)
0
especially because:
>>> fourier_transform(DiracDelta(x), x, y)
1
>>> inverse_fourier_transform(DiracDelta(x), x, y)
1
This is with:
>>> sympy.__version__
'1.1.1'
Is this a bug or am I missing something?
As a consequence of this, I guess, other trivial transforms also appear
to be wrong:
>>> fourier_transform(exp(I * omega * x), x, y)
0
Thanks. Cheers,
Daniele