Mathematica source file C language definitions for use with Mathematica output Could add definitions for Random(), SeedRandom(), etc. More...
Go to the source code of this file.
Macros | |
#define | Power(x, y) (pow((x), (y))) |
#define | Sqrt(x) (sqrt((x))) |
#define | Abs(x) (fabs((x))) |
#define | Exp(x) (exp((x))) |
#define | Log(x) (log((x))) |
#define | Sin(x) (sin((x))) |
#define | Cos(x) (cos((x))) |
#define | Tan(x) (tan((x))) |
#define | ArcSin(x) (asin((x))) |
#define | ArcCos(x) (acos((x))) |
#define | ArcTan(x) (atan((x))) |
#define | Sinh(x) (sinh((x))) |
#define | Cosh(x) (cosh((x))) |
#define | Tanh(x) (tanh((x))) |
#define | Cot(x) (1./tan((x))) |
#define | Csc(x) (1./sin((x))) |
#define | Conjugate(x) (x) |
#define | prpow(x, y) pow(x,y) |
#define | prlog(x) log(x) |
Mathematica source file C language definitions for use with Mathematica output Could add definitions for Random(), SeedRandom(), etc.
Definition in file koral.mdefs.h.
#define Abs | ( | x | ) | (fabs((x))) |
Definition at line 11 of file koral.mdefs.h.
#define ArcCos | ( | x | ) | (acos((x))) |
Definition at line 21 of file koral.mdefs.h.
#define ArcSin | ( | x | ) | (asin((x))) |
Definition at line 20 of file koral.mdefs.h.
#define ArcTan | ( | x | ) | (atan((x))) |
Definition at line 22 of file koral.mdefs.h.
#define Conjugate | ( | x | ) | (x) |
Definition at line 32 of file koral.mdefs.h.
#define Cos | ( | x | ) | (cos((x))) |
Definition at line 17 of file koral.mdefs.h.
#define Cosh | ( | x | ) | (cosh((x))) |
Definition at line 25 of file koral.mdefs.h.
#define Cot | ( | x | ) | (1./tan((x))) |
Definition at line 28 of file koral.mdefs.h.
#define Csc | ( | x | ) | (1./sin((x))) |
Definition at line 29 of file koral.mdefs.h.
#define Exp | ( | x | ) | (exp((x))) |
Definition at line 13 of file koral.mdefs.h.
#define Log | ( | x | ) | (log((x))) |
Definition at line 14 of file koral.mdefs.h.
#define Power | ( | x, | |
y | |||
) | (pow((x), (y))) |
Definition at line 8 of file koral.mdefs.h.
#define prlog | ( | x | ) | log(x) |
Definition at line 40 of file koral.mdefs.h.
#define prpow | ( | x, | |
y | |||
) | pow(x,y) |
Definition at line 39 of file koral.mdefs.h.
#define Sin | ( | x | ) | (sin((x))) |
Definition at line 16 of file koral.mdefs.h.
#define Sinh | ( | x | ) | (sinh((x))) |
Definition at line 24 of file koral.mdefs.h.
#define Sqrt | ( | x | ) | (sqrt((x))) |
Definition at line 9 of file koral.mdefs.h.
#define Tan | ( | x | ) | (tan((x))) |
Definition at line 18 of file koral.mdefs.h.
#define Tanh | ( | x | ) | (tanh((x))) |
Definition at line 26 of file koral.mdefs.h.