ngspice/src/maths/cmaths/cmath1.h

34 lines
2.0 KiB
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for cmath1.c
* 1999 E. Rouat
************/
2013-01-23 20:57:32 +01:00
#ifndef ngspice_CMATH1_H
#define ngspice_CMATH1_H
2000-04-27 22:03:57 +02:00
void * cx_mag(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_ph(void *data, short int type, int length, int *newlength, short int *newtype);
2011-08-06 16:52:41 +02:00
void * cx_cph(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_unwrap(void *data, short int type, int length, int *newlength, short int *newtype);
2000-04-27 22:03:57 +02:00
void * cx_j(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_real(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_imag(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_pos(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_db(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_log10(void *data, short int type, int length, int *newlength, short int *newtype);
2000-04-27 22:03:57 +02:00
void * cx_ln(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_exp(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_sqrt(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_sin(void *data, short int type, int length, int *newlength, short int *newtype);
2011-07-17 01:03:27 +02:00
void * cx_sinh(void *data, short int type, int length, int *newlength, short int *newtype);
2000-04-27 22:03:57 +02:00
void * cx_cos(void *data, short int type, int length, int *newlength, short int *newtype);
2011-07-17 01:03:27 +02:00
void * cx_cosh(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_tan(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_tanh(void *data, short int type, int length, int *newlength, short int *newtype);
void * cx_atan(void *data, short int type, int length, int *newlength, short int *newtype);
2013-08-20 21:39:20 +02:00
void * cx_sortorder(void *data, short int type, int length, int *newlength, short int *newtype);
2000-04-27 22:03:57 +02:00
#endif