File: gsl-complex.h

package info (click to toggle)
gnumeric 1.10.17-1.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 96,532 kB
  • sloc: ansic: 266,961; xml: 52,455; sh: 10,491; makefile: 2,872; perl: 2,507; yacc: 1,326; 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