Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

5.1.4 vsip_fft_getattr_p - Get FFT Object Attributes

typedef struct _vsip_fft_attr_f { 
  vsip_scalar_vi input; 
  vsip_scalar_vi output; 
  vsip_fft_place place; 
  vsip_scalar_f  scale; 
  vsip_fft_dir   dir; 
} vsip_fft_attr_f; 
 
void vsip_fft_getattr_f(const vsip_fft_f *fft, vsip_fft_attr_f *attr);
Description

This function retrieves the attributes of an FFT (Fast Fourier Transform) object and stores them in the provided attribute structure.

Parameters