1967
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
1967
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_liboctave_mappers_h) |
|
24 #define octave_liboctave_mappers_h 1 |
|
25 |
|
26 #include "oct-cmplx.h" |
|
27 |
|
28 extern double arg (double x); |
|
29 extern double conj (double x); |
|
30 extern double fix (double x); |
|
31 extern double imag (double x); |
|
32 extern double real (double x); |
|
33 extern double round (double x); |
|
34 extern double signum (double x); |
2803
|
35 extern double xerf (double x); |
|
36 extern double xerfc (double x); |
1967
|
37 extern double xisnan (double x); |
|
38 extern double xfinite (double x); |
|
39 extern double xisinf (double x); |
|
40 |
|
41 extern double xisnan (const Complex& x); |
|
42 extern double xfinite (const Complex& x); |
|
43 extern double xisinf (const Complex& x); |
|
44 |
|
45 extern Complex acos (const Complex& x); |
|
46 extern Complex acosh (const Complex& x); |
|
47 extern Complex asin (const Complex& x); |
|
48 extern Complex asinh (const Complex& x); |
|
49 extern Complex atan (const Complex& x); |
|
50 extern Complex atanh (const Complex& x); |
|
51 extern Complex ceil (const Complex& x); |
|
52 extern Complex fix (const Complex& x); |
|
53 extern Complex floor (const Complex& x); |
|
54 extern Complex log10 (const Complex& x); |
|
55 extern Complex round (const Complex& x); |
|
56 extern Complex signum (const Complex& x); |
|
57 extern Complex tan (const Complex& x); |
|
58 extern Complex tanh (const Complex& x); |
|
59 |
|
60 #endif |
|
61 |
|
62 /* |
|
63 ;;; Local Variables: *** |
|
64 ;;; mode: C++ *** |
|
65 ;;; End: *** |
|
66 */ |