diff liboctave/lo-mappers.h @ 3248:68259f410026

[project @ 1999-07-13 03:34:54 by jwe]
author jwe
date Tue, 13 Jul 1999 03:40:17 +0000
parents a494f93e60ff
children 13905c3a24af
line wrap: on
line diff
--- a/liboctave/lo-mappers.h	Sat Jun 19 06:51:15 1999 +0000
+++ b/liboctave/lo-mappers.h	Tue Jul 13 03:40:17 1999 +0000
@@ -34,13 +34,13 @@
 extern double signum (double x);
 extern double xerf (double x);
 extern double xerfc (double x);
-extern double xisnan (double x);
-extern double xfinite (double x);
-extern double xisinf (double x);
 
-extern double xisnan (const Complex& x);
-extern double xfinite (const Complex& x);
-extern double xisinf (const Complex& x);
+extern bool xisnan (double x);
+extern bool xfinite (double x);
+extern bool xisinf (double x);
+
+extern double xmin (double x, double y);
+extern double xmax (double x, double y);
 
 extern Complex acos (const Complex& x);
 extern Complex acosh (const Complex& x);
@@ -57,6 +57,13 @@
 extern Complex tan (const Complex& x);
 extern Complex tanh (const Complex& x);
 
+extern bool xisnan (const Complex& x);
+extern bool xfinite (const Complex& x);
+extern bool xisinf (const Complex& x);
+
+extern Complex xmin (const Complex& x, const Complex& y);
+extern Complex xmax (const Complex& x, const Complex& y);
+
 #endif
 
 /*