summaryrefslogtreecommitdiff
path: root/gsl-1.9/fft/complex_internal.h
blob: 1c9c366a0108e79ace13c8a4d5dd6deb03050454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Handling of packed complex types... not meant for client consumption.
 */
#ifndef COMPLEX_INTERNAL_H_
#define COMPLEX_INTERNAL_H_

#define VECTOR(a,stride,i) ((a)[(stride)*(i)])
#define REAL(a,stride,i) ((a)[2*(stride)*(i)])
#define IMAG(a,stride,i) ((a)[2*(stride)*(i)+1])

#define REAL0(a) ((a)[0])
#define IMAG0(a) ((a)[1])


#endif /* !COMPLEX_INTERNAL_H_ */