Mercurial > hg > octave-lyh
view liboctave/lo-mappers.cc @ 3056:b08a007edd15
[project @ 1997-06-16 02:12:15 by jwe]
author | jwe |
---|---|
date | Mon, 16 Jun 1997 02:12:15 +0000 |
parents | 4d275e0a0576 |
children | db6d57d718f7 |
line wrap: on
line source
/* Copyright (C) 1996, 1997 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <cfloat> #include "lo-error.h" #include "lo-ieee.h" #include "lo-mappers.h" #include "lo-utils.h" #include "oct-cmplx.h" #include "oct-math.h" #include "f77-fcn.h" #if defined (_AIX) && defined (__GNUG__) #undef finite #define finite(x) ((x) < DBL_MAX && (x) > -DBL_MAX) #endif extern "C" { int F77_FCN (xdgamma, XDGAMMA) (const double&, double&); int F77_FCN (dlgams, DLGAMS) (const double&, double&, double&); } #ifndef M_LOG10E #define M_LOG10E 0.43429448190325182765 #endif #ifndef M_PI #define M_PI 3.14159265358979323846 #endif #if defined (HAVE_LGAMMA) && ! defined (SIGNGAM_DECLARED) extern int signgam; #endif // Double -> double mappers. double arg (double x) { if (x < 0.0) return M_PI; else #if defined (HAVE_ISNAN) return xisnan (x) ? octave_NaN : 0.0; #else return 0.0; #endif } double conj (double x) { return x; } double fix (double x) { return x > 0 ? floor (x) : ceil (x); } double imag (double x) { #if defined (HAVE_ISNAN) return xisnan (x) ? octave_NaN : 0.0; #else return 0.0; #endif } double real (double x) { return x; } double round (double x) { return D_NINT (x); } double signum (double x) { double tmp = 0.0; if (x < 0.0) tmp = -1.0; else if (x > 0.0) tmp = 1.0; #if defined (HAVE_ISNAN) return xisnan (x) ? octave_NaN : tmp; #else return tmp; #endif } double xerf (double x) { #if defined (HAVE_ERF) return erf (x); #else (*current_liboctave_error_handler) ("erf (x) not available on this system"); #endif } double xerfc (double x) { #if defined (HAVE_ERFC) return erfc (x); #else (*current_liboctave_error_handler) ("erfc (x) not available on this system"); #endif } double xisnan (double x) { #if defined (HAVE_ISNAN) return isnan (x); #else return 0; #endif } double xfinite (double x) { #if defined (HAVE_FINITE) return finite (x); #elif defined (HAVE_ISINF) && defined (HAVE_ISNAN) return (! isinf (x) && ! isnan (x)); #else return 1; #endif } double xgamma (double x) { double result; F77_XFCN (xdgamma, XDGAMMA, (x, result)); return result; } double xisinf (double x) { #if defined (HAVE_ISINF) return isinf (x); #elif defined (HAVE_FINITE) && defined (HAVE_ISNAN) return (! (finite (x) || isnan (x))); #else return 0; #endif } double xlgamma (double x) { double result; double sgngam; F77_XFCN (dlgams, DLGAMS, (x, result, sgngam)); return result; } // Complex -> double mappers. double xisnan (const Complex& x) { #if defined (HAVE_ISNAN) return (isnan (real (x)) || isnan (imag (x))); #else return 0; #endif } double xfinite (const Complex& x) { return (! (xisinf (real (x)) || xisinf (imag (x)))); } double xisinf (const Complex& x) { return (! xfinite (x)); } // Complex -> complex mappers. Complex acos (const Complex& x) { static Complex i (0, 1); return (real (x) * imag (x) < 0.0) ? i * acosh (x) : -i * acosh (x); } Complex acosh (const Complex& x) { return log (x + sqrt (x*x - 1.0)); } Complex asin (const Complex& x) { static Complex i (0, 1); return -i * log (i*x + sqrt (1.0 - x*x)); } Complex asinh (const Complex& x) { return log (x + sqrt (x*x + 1.0)); } Complex atan (const Complex& x) { static Complex i (0, 1); return i * log ((i + x) / (i - x)) / 2.0; } Complex atanh (const Complex& x) { return log ((1 + x) / (1 - x)) / 2.0; } Complex ceil (const Complex& x) { return Complex (ceil (real (x)), ceil (imag (x))); } Complex fix (const Complex& x) { return Complex (fix (real (x)), fix (imag (x))); } Complex floor (const Complex& x) { return Complex (floor (real (x)), floor (imag (x))); } Complex log10 (const Complex& x) { return M_LOG10E * log (x); } Complex round (const Complex& x) { return Complex (D_NINT (real (x)), D_NINT (imag (x))); } Complex signum (const Complex& x) { return x / abs (x); } Complex tan (const Complex& x) { return sin (x) / cos (x); } Complex tanh (const Complex& x) { return sinh (x) / cosh (x); } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */