File: complex_internal.h

package info (click to toggle)
gsl-doc 2.3-1
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 27,748 kB
  • ctags: 15,177
  • sloc: ansic: 235,014; sh: 11,585; makefile: 925
file content (14 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (34)
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_ */