Dear support, We get some inconsistencies with using I and j in scipy. Is there some reason these should be different?
sage: import scipy.fftpack as Fourier sage: Fourier.ifft([95,20-25*i,-23,20+25*i]) array([ 28.0+0.j, 29.5-0.j, 8.0+0.j, 29.5+0.j]) sage: Fourier.ifft([95,20-25j,-23,20+25j]) array([ 28.+0.j, 42.+0.j, 8.+0.j, 17.+0.j]) Thanks for the help, - kcrisman -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
