File: gsl-complex.h

package info (click to toggle)
gnumeric 1.6.3-5.1%2Betch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 70,644 kB
  • ctags: 18,973
  • sloc: ansic: 204,271; xml: 47,128; sh: 8,917; makefile: 2,540; yacc: 1,137; perl: 179; python: 86
file content (25 lines) | stat: -rw-r--r-- 1,341 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __GSL_COMPLEX_H__
#define __GSL_COMPLEX_H__

void gsl_complex_inverse  (const complex_t *a, complex_t *res);
void gsl_complex_negative (const complex_t *a, complex_t *res);
void gsl_complex_arcsin   (const complex_t *a, complex_t *res);
void gsl_complex_arccos   (const complex_t *a, complex_t *res);
void gsl_complex_arctan   (const complex_t *a, complex_t *res);
void gsl_complex_arcsec   (const complex_t *a, complex_t *res);
void gsl_complex_arccsc   (const complex_t *a, complex_t *res);
void gsl_complex_arccot   (const complex_t *a, complex_t *res);
void gsl_complex_sinh     (const complex_t *a, complex_t *res);
void gsl_complex_cosh     (const complex_t *a, complex_t *res);
void gsl_complex_tanh     (const complex_t *a, complex_t *res);
void gsl_complex_sech     (const complex_t *a, complex_t *res);
void gsl_complex_csch     (const complex_t *a, complex_t *res);
void gsl_complex_coth     (const complex_t *a, complex_t *res);
void gsl_complex_arcsinh  (const complex_t *a, complex_t *res);
void gsl_complex_arccosh  (const complex_t *a, complex_t *res);
void gsl_complex_arctanh  (const complex_t *a, complex_t *res);
void gsl_complex_arcsech  (const complex_t *a, complex_t *res);
void gsl_complex_arccsch  (const complex_t *a, complex_t *res);
void gsl_complex_arccoth  (const complex_t *a, complex_t *res);

#endif