GLUS
glus_fourier.h
Go to the documentation of this file.
1 /*
2  * GLUS - Modern OpenGL, OpenGL ES and OpenVG Utilities. Copyright (C) since 2010 Norbert Nopper
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef GLUS_FOURIER_H_
19 #define GLUS_FOURIER_H_
20 
30 GLUSAPI GLUSboolean glusFourierDFTc(GLUScomplex* result, const GLUScomplex* vector, const GLUSint n);
31 
42 
53 
64 
75 
86 
98 
110 
111 #endif /* GLUS_FOURIER_H_ */
GLUSAPI GLUSboolean glusFourierRecursiveInverseFFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs an inverse fast fourier transform on a given vector with N elements, using a recursive algor...
Definition: glus_fourier.c:195
GLUSAPI GLUSboolean glusFourierRecursiveFFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs a fast fourier transform on a given vector with N elements, using a recursive algorithm...
Definition: glus_fourier.c:169
GLUSAPI GLUSboolean glusFourierDFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs a direct fourier transform on a given vector with N elements.
Definition: glus_fourier.c:37
int GLUSint
Definition: glus_typedef.h:27
GLUSAPI GLUSboolean glusFourierButterflyInverseFFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs an inverse fast fourier transform on a given vector with N elements, using a butterfly algor...
Definition: glus_fourier.c:348
GLUSAPI GLUSboolean glusFourierButterflyFFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs a fast fourier transform on a given vector with N elements, using a butterfly algorithm...
Definition: glus_fourier.c:320
Definition: glus_typedef.h:42
GLUSAPI GLUSboolean glusFourierButterflyShuffleFFTi(GLUSint *result, const GLUSint *vector, const GLUSint n)
Shuffles a index vector with N elements, that the indices can be used for a FFT butterfly algorithm...
Definition: glus_fourier.c:397
#define GLUSAPI
Definition: glus_function.h:38
GLUSAPI GLUSboolean glusFourierInverseDFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Performs an inverse direct fourier transform on a given vector with N elements.
Definition: glus_fourier.c:79
unsigned char GLUSboolean
Definition: glus_typedef.h:21
GLUSAPI GLUSboolean glusFourierButterflyShuffleFFTc(GLUScomplex *result, const GLUScomplex *vector, const GLUSint n)
Shuffles a vector with N elements, that it can be used for a FFT butterfly algorithm.
Definition: glus_fourier.c:242