wxMaxima
Loading...
Searching...
No Matches
define.h
Go to the documentation of this file.
1
17#define ABS(x) (((x)>0)?(x):-(x))
18#define MAX(x,y) ((x)>(y)?(x):(y))
19#define MIN(x,y) ((x)>(y)?(y):(x))