Thank you very much Stéfan!!
2011/5/24 Stéfan van der Walt
> Hi Chris
>
> On Tue, May 24, 2011 at 9:29 AM, Goo Creations
> wrote:
> > At this point I'm stuck, since I'm not sure how to do the row based
> > transform on ownRes.
> > Is there anyone out there who knows how to do this?
>
> NumPy'
Hi Chris
On Tue, May 24, 2011 at 9:29 AM, Goo Creations wrote:
> At this point I'm stuck, since I'm not sure how to do the row based
> transform on ownRes.
> Is there anyone out there who knows how to do this?
NumPy's FFT supports an "axis" argument, so you can do
In [29]: own = np.array([[1+0j
Hi all
I know there exists a function for Fourier transforming 2D : fft2
But I'm trying to understand how this function works. As far as I know,
first a column based transform is done and then a row based transform.
This is what I've created for a test:
*test = np.array([[1+0j,2+0j], [3+0j, 4+0j