2000-04-27 22:03:57 +02:00
|
|
|
/*************
|
|
|
|
|
* Header file for cmath2.c
|
|
|
|
|
* 1999 E. Rouat
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
#ifndef CMATH2_H_INCLUDED
|
|
|
|
|
#define CMATH2_H_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
2010-07-24 14:37:41 +02:00
|
|
|
void * cx_tan(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);
|
|
|
|
|
void * cx_norm(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_uminus(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_rnd(void *data, short int type, int length, int *newlength, short int *newtype);
|
2010-08-29 11:23:34 +02:00
|
|
|
void * cx_sunif(void *data, short int type, int length, int *newlength, short int *newtype);
|
2010-08-28 20:13:08 +02:00
|
|
|
void * cx_sgauss(void *data, short int type, int length, int *newlength, short int *newtype);
|
2010-07-24 14:37:41 +02:00
|
|
|
void * cx_mean(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_length(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_vector(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_unitvec(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_plus(void *data1, void *data2, short int datatype1, short int datatype2, int length);
|
|
|
|
|
void * cx_minus(void *data1, void *data2, short int datatype1, short int datatype2, int length);
|
|
|
|
|
void * cx_times(void *data1, void *data2, short int datatype1, short int datatype2, int length);
|
|
|
|
|
void * cx_mod(void *data1, void *data2, short int datatype1, short int datatype2, int length);
|
|
|
|
|
void * cx_max(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_min(void *data, short int type, int length, int *newlength, short int *newtype);
|
|
|
|
|
void * cx_d(void *data, short int type, int length, int *newlength, short int *newtype);
|
2010-10-08 20:02:58 +02:00
|
|
|
void *cx_avg(void *data, short int type, int length, int *newlength, short int *newtype);
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
2001-11-23 19:01:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|