File: gsl-complex.h

package info (click to toggle)
gnumeric 1.4.3-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 71,576 kB
  • ctags: 28,555
  • sloc: ansic: 282,333; xml: 45,788; sh: 8,479; makefile: 3,119; yacc: 1,129; lisp: 200; perl: 173; 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