11-18-2008 04:49 AM
Hello
I am having a 2D array of complex FFT values. I converted them to polar using the Complex to polar function. When i bundle these values and connect it to a polar plot vi, it shows an error like the dimensions are not correct. Can anyone help with this?
The screenshot is attached below:
Thanks
11-18-2008 06:27 AM
11-18-2008 08:35 AM
Hello Mathan
I tried to insert 2 Build arrays and then bundle them together and give as input to the polar plot. But it also doesnt work.
11-18-2008 08:53 AM
11-18-2008 09:48 AM
11-18-2008 01:40 PM
11-18-2008 01:54 PM - edited 11-18-2008 02:02 PM
If you want to blindly plot all data, you could do the following:
(array size, multiply array elements, reshape array, complex to polar, bundle)
11-18-2008 02:04 PM - edited 11-18-2008 02:05 PM
The polar plet needs degrees, so you would need to correctly scale the angle in the above code.
Also remember that xy graphs take complex data directly, so if you want seperate plots (e.g. different color) for each row in the data, you could do it as follows. No scaling needed.
11-18-2008 02:30 PM
Hello smercurio_fc
A 24 bit pixmap (2D array) from an image data is performed 2D FFT. The input array is this one. I have done the 2D FFT for the whole image by first computing the FFT for rows in parallel and then FFT for the columnsof the resulting one.Now what i want to do is to take the slices through the centre of the image at various angles (Central Slice Theorem). [For this i need to map of the samples of the FT from cartesian raster to a polar raster and I am not clear about how to do this]