File: gsl-complex.h

package info (click to toggle)
gnumeric 1.10.8-1squeeze5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 90,968 kB
  • ctags: 23,303
  • sloc: ansic: 248,235; xml: 51,894; sh: 10,491; makefile: 2,822; perl: 2,466; yacc: 1,272; python: 205
file content (25 lines) | stat: -rw-r--r-- 1,341 bytes parent folder | download | duplicates (4)
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  (complex_t const *a, complex_t *res);
void gsl_complex_negative (complex_t const *a, complex_t *res);
void gsl_complex_arcsin   (complex_t const *a, complex_t *res);
void gsl_complex_arccos   (complex_t const *a, complex_t *res);
void gsl_complex_arctan   (complex_t const *a, complex_t *res);
void gsl_complex_arcsec   (complex_t const *a, complex_t *res);
void gsl_complex_arccsc   (complex_t const *a, complex_t *res);
void gsl_complex_arccot   (complex_t const *a, complex_t *res);
void gsl_complex_sinh     (complex_t const *a, complex_t *res);
void gsl_complex_cosh     (complex_t const *a, complex_t *res);
void gsl_complex_tanh     (complex_t const *a, complex_t *res);
void gsl_complex_sech     (complex_t const *a, complex_t *res);
void gsl_complex_csch     (complex_t const *a, complex_t *res);
void gsl_complex_coth     (complex_t const *a, complex_t *res);
void gsl_complex_arcsinh  (complex_t const *a, complex_t *res);
void gsl_complex_arccosh  (complex_t const *a, complex_t *res);
void gsl_complex_arctanh  (complex_t const *a, complex_t *res);
void gsl_complex_arcsech  (complex_t const *a, complex_t *res);
void gsl_complex_arccsch  (complex_t const *a, complex_t *res);
void gsl_complex_arccoth  (complex_t const *a, complex_t *res);

#endif