Mercurial > hg > octave-lyh
diff src/mappers.cc @ 2089:4dcc8b77e84a
[project @ 1996-04-26 07:55:54 by jwe]
author | jwe |
---|---|
date | Fri, 26 Apr 1996 07:56:08 +0000 |
parents | 003570e69c7b |
children | c0ec4630bd31 |
line wrap: on
line diff
--- a/src/mappers.cc +++ b/src/mappers.cc @@ -24,6 +24,7 @@ #include <config.h> #endif +#include <cctype> #include <cfloat> #include "oct-cmplx.h" @@ -335,106 +336,142 @@ void install_mapper_functions (void) { - DEFUN_MAPPER (abs, 0, 0.0, 0.0, fabs, abs, 0, + DEFUN_MAPPER (abs, 0, fabs, abs, 0, 0.0, 0.0, 0, "abs (X): compute abs (X) for each element of X"); - DEFUN_MAPPER (acos, 1, -1.0, 1.0, acos, 0, acos, + DEFUN_MAPPER (acos, 0, acos, 0, acos, -1.0, 1.0, 1, "acos (X): compute acos (X) for each element of X"); - DEFUN_MAPPER (acosh, 1, 1.0, DBL_MAX, acosh, 0, acosh, + DEFUN_MAPPER (acosh, 0, acosh, 0, acosh, 1.0, DBL_MAX, 1, "acosh (X): compute acosh (X) for each element of X"); - DEFUN_MAPPER (angle, 0, 0.0, 0.0, arg, arg, 0, + DEFUN_MAPPER (angle, 0, arg, arg, 0, 0.0, 0.0, 0, "angle (X): compute arg (X) for each element of X"); - DEFUN_MAPPER (arg, 0, 0.0, 0.0, arg, arg, 0, + DEFUN_MAPPER (arg, 0, arg, arg, 0, 0.0, 0.0, 0, "arg (X): compute arg (X) for each element of X"); - DEFUN_MAPPER (asin, 1, -1.0, 1.0, asin, 0, asin, + DEFUN_MAPPER (asin, 0, asin, 0, asin, -1.0, 1.0, 1, "asin (X): compute asin (X) for each element of X"); - DEFUN_MAPPER (asinh, 0, 0.0, 0.0, asinh, 0, asinh, + DEFUN_MAPPER (asinh, 0, asinh, 0, asinh, 0.0, 0.0, 0, "asinh (X): compute asinh (X) for each element of X"); - DEFUN_MAPPER (atan, 0, 0.0, 0.0, atan, 0, atan, + DEFUN_MAPPER (atan, 0, atan, 0, atan, 0.0, 0.0, 0, "atan (X): compute atan (X) for each element of X"); - DEFUN_MAPPER (atanh, 1, -1.0, 1.0, atanh, 0, atanh, + DEFUN_MAPPER (atanh, 0, atanh, 0, atanh, -1.0, 1.0, 1, "atanh (X): compute atanh (X) for each element of X"); - DEFUN_MAPPER (ceil, 0, 0.0, 0.0, ceil, 0, ceil, + DEFUN_MAPPER (ceil, 0, ceil, 0, ceil, 0.0, 0.0, 0, "ceil (X): round elements of X toward +Inf"); - DEFUN_MAPPER (conj, 0, 0.0, 0.0, conj, 0, conj, + DEFUN_MAPPER (conj, 0, conj, 0, conj, 0.0, 0.0, 0, "conj (X): compute complex conjugate for each element of X"); - DEFUN_MAPPER (cos, 0, 0.0, 0.0, cos, 0, cos, + DEFUN_MAPPER (cos, 0, cos, 0, cos, 0.0, 0.0, 0, "cos (X): compute cos (X) for each element of X"); - DEFUN_MAPPER (cosh, 0, 0.0, 0.0, cosh, 0, cosh, + DEFUN_MAPPER (cosh, 0, cosh, 0, cosh, 0.0, 0.0, 0, "cosh (X): compute cosh (X) for each element of X"); - DEFUN_MAPPER (erf, 0, 0.0, 0.0, xerf, 0, 0, + DEFUN_MAPPER (erf, 0, xerf, 0, 0, 0.0, 0.0, 0, "erf (X): compute erf (X) for each element of X"); - DEFUN_MAPPER (erfc, 0, 0.0, 0.0, xerfc, 0, 0, + DEFUN_MAPPER (erfc, 0, xerfc, 0, 0, 0.0, 0.0, 0, "erfc (X): compute erfc (X) for each element of X"); - DEFUN_MAPPER (exp, 0, 0.0, 0.0, exp, 0, exp, + DEFUN_MAPPER (exp, 0, exp, 0, exp, 0.0, 0.0, 0, "exp (X): compute exp (X) for each element of X"); - DEFUN_MAPPER (finite, 0, 0.0, 0.0, xfinite, xfinite, 0, + DEFUN_MAPPER (finite, 0, xfinite, xfinite, 0, 0.0, 0.0, 0, "finite (X): return 1 for finite elements of X"); - DEFUN_MAPPER (fix, 0, 0.0, 0.0, fix, 0, fix, + DEFUN_MAPPER (fix, 0, fix, 0, fix, 0.0, 0.0, 0, "fix (X): round elements of X toward zero"); - DEFUN_MAPPER (floor, 0, 0.0, 0.0, floor, 0, floor, + DEFUN_MAPPER (floor, 0, floor, 0, floor, 0.0, 0.0, 0, "floor (X): round elements of X toward -Inf"); - DEFUN_MAPPER (gamma, 0, 0.0, 0.0, xgamma, 0, 0, + DEFUN_MAPPER (gamma, 0, xgamma, 0, 0, 0.0, 0.0, 0, "gamma (X): compute gamma (X) for each element of X"); - DEFUN_MAPPER (isinf, 0, 0.0, 0.0, xisinf, xisinf, 0, + DEFUN_MAPPER (imag, 0, imag, imag, 0, 0.0, 0.0, 0, + "imag (X): return imaginary part for each elements of X"); + + DEFUN_MAPPER (isalnum, isalnum, 0, 0, 0, 0.0, 0.0, 0, + "isalnum (X): "); + + DEFUN_MAPPER (isalpha, isalpha, 0, 0, 0, 0.0, 0.0, 0, + "isalpha (X): "); + + DEFUN_MAPPER (isascii, isascii, 0, 0, 0, 0.0, 0.0, 0, + "isascii (X): "); + + DEFUN_MAPPER (iscntrl, iscntrl, 0, 0, 0, 0.0, 0.0, 0, + "iscntrl (X): "); + + DEFUN_MAPPER (isdigit, isdigit, 0, 0, 0, 0.0, 0.0, 0, + "isdigit (X): "); + + DEFUN_MAPPER (isinf, 0, xisinf, xisinf, 0, 0.0, 0.0, 0, "isinf (X): return 1 for elements of X infinite"); - DEFUN_MAPPER (imag, 0, 0.0, 0.0, imag, imag, 0, - "imag (X): return imaginary part for each elements of X"); + DEFUN_MAPPER (isgraph, isgraph, 0, 0, 0, 0.0, 0.0, 0, + "isgraph (X): "); - DEFUN_MAPPER (isnan, 0, 0.0, 0.0, xisnan, xisnan, 0, + DEFUN_MAPPER (islower, islower, 0, 0, 0, 0.0, 0.0, 0, + "islower (X): "); + + DEFUN_MAPPER (isnan, 0, xisnan, xisnan, 0, 0.0, 0.0, 0, "isnan (X): return 1 where elements of X are NaNs"); - DEFUN_MAPPER (lgamma, 0, 0.0, 0.0, xlgamma, 0, 0, + DEFUN_MAPPER (isprint, isprint, 0, 0, 0, 0.0, 0.0, 0, + "isprint (X): "); + + DEFUN_MAPPER (ispunct, ispunct, 0, 0, 0, 0.0, 0.0, 0, + "ispunct (X): "); + + DEFUN_MAPPER (isspace, isspace, 0, 0, 0, 0.0, 0.0, 0, + "isspace (X): "); + + DEFUN_MAPPER (isupper, isupper, 0, 0, 0, 0.0, 0.0, 0, + "isupper (X): "); + + DEFUN_MAPPER (isxdigit, isxdigit, 0, 0, 0, 0.0, 0.0, 0, + "isxdigit (X): "); + + DEFUN_MAPPER (lgamma, 0, xlgamma, 0, 0, 0.0, 0.0, 0, "lgamma (X): compute log gamma (X) for each element of X"); - DEFUN_MAPPER (log, 1, 0.0, DBL_MAX, log, 0, log, + DEFUN_MAPPER (log, 0, log, 0, log, 0.0, DBL_MAX, 1, "log (X): compute log (X) for each element of X"); - DEFUN_MAPPER (log10, 1, 0.0, DBL_MAX, log10, 0, log10, + DEFUN_MAPPER (log10, 0, log10, 0, log10, 0.0, DBL_MAX, 1, "log10 (X): compute log10 (X) for each element of X"); - DEFUN_MAPPER (real, 0, 0.0, 0.0, real, real, 0, + DEFUN_MAPPER (real, 0, real, real, 0, 0.0, 0.0, 0, "real (X): return real part for each element of X"); - DEFUN_MAPPER (round, 0, 0.0, 0.0, round, 0, round, + DEFUN_MAPPER (round, 0, round, 0, round, 0.0, 0.0, 0, "round (X): round elements of X to nearest integer"); - DEFUN_MAPPER (sign, 0, 0.0, 0.0, signum, 0, signum, + DEFUN_MAPPER (sign, 0, signum, 0, signum, 0.0, 0.0, 0, "sign (X): apply signum function to elements of X"); - DEFUN_MAPPER (sin, 0, 0.0, 0.0, sin, 0, sin, + DEFUN_MAPPER (sin, 0, sin, 0, sin, 0.0, 0.0, 0, "sin (X): compute sin (X) for each element of X"); - DEFUN_MAPPER (sinh, 0, 0.0, 0.0, sinh, 0, sinh, + DEFUN_MAPPER (sinh, 0, sinh, 0, sinh, 0.0, 0.0, 0, "sinh (X): compute sinh (X) for each element of X"); - DEFUN_MAPPER (sqrt, 1, 0.0, DBL_MAX, sqrt, 0, sqrt, + DEFUN_MAPPER (sqrt, 0, sqrt, 0, sqrt, 0.0, DBL_MAX, 1, "sqrt (X): compute sqrt (X) for each element of X"); - DEFUN_MAPPER (tan, 0, 0.0, 0.0, tan, 0, tan, + DEFUN_MAPPER (tan, 0, tan, 0, tan, 0.0, 0.0, 0, "tan (X): compute tan (X) for each element of X"); - DEFUN_MAPPER (tanh, 0, 0.0, 0.0, tanh, 0, tanh, + DEFUN_MAPPER (tanh, 0, tanh, 0, tanh, 0.0, 0.0, 0, "tanh (X): compute tanh (X) for each element of X"); DEFALIAS (gammaln, lgamma);