fft2 and fftn provide the axis parameter which allows to specify over which axes to perform the transform. Does the method obey order?
Given a 2-dimensional numpy array
a = np.array([[1,2],[3,4]])
is
fft2(a,axis=(0,1) different from
fft2(a,axis=(1,0) I have data which is correlated across lines but not columns...