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.10 vsip_fftm_getattr_p - Get Multple-FFT Object Attributes

typedef struct _vsip_fftm_attr_f { 
  vsip_scalar_mi input; 
  vsip_scalar_mi output; 
  vsip_fft_place place; 
  vsip_scalar_f  scale; 
  vsip_fft_dir   dir; 
  vsip_major     major; 
} vsip_fftm_attr_f; 
 
void vsip_fftm_getattr_f(const vsip_fftm_f *fft, vsip_fftm_attr_f *attr);
Description

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

Parameters