Complex c1; Real tol; Integer finite(c1); 有限関数 もし c1 が有限値なら 1 無限大あるいは NaN なら 0 Integer isnan(c1); もし c1 が NaN なら 1 それ以外なら 0 Real abs(c1); 絶対値 Real arg(c1); 偏角 Comlex max(c1, c2); 最大値 Comlex min(c1, c2); 最小値 Complex sin(c1); 正弦関数 Complex sinh(c1); 双曲線正弦関数 Complex asin(c1); 逆正弦関数 Complex asinh(c1); 逆双曲線正弦関数 Complex cos(c1); 余弦関数 Complex cosh(c1); 双曲線余弦関数 Complex acos(c1); 逆余弦関数 Complex acosh(c1); 逆双曲線余弦関数 Complex tan(c1); 正接関数 Complex tanh(c1); 双曲線正接関数 Complex atan(c1); 逆正接関数 Complex atanh(c1); 逆双曲線正接関数 Complex log(c1); 自然対数 Complex log10(c1); 常用対数 Complex exp(c1); 指数関数 Complex conj(c1); 共役複素数 Complex sqrt(c1); 平方根 Complex sgn(c1); 符合関数 (c1/abs(c1)) Complex pow(c1, c2) c1^c2 Complex trans(c1) c1' Complex conj(c1) c1 の共役 Complex conjtrans(c1) c1# Complex inv(c1) c1~ Complex ceil(c1) 最高値の整数への丸め関数 Complex floor(c1) 最低値の整数への丸め関数 Complex fix(c1) 0 方向の整数への丸め関数 Complex round(c1) 最も近い整数への丸め関数 Complex round2z(c1) ゼロへの丸め(tol = EPS) Complex round2z(c1, tol) 絶対値が tol より小なら 0