Mercurial > hg > octave-thorsten
diff liboctave/dNDArray.h @ 10329:83fa590b8a09
simplify min/max definitions in liboctave
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 17 Feb 2010 10:40:36 +0100 |
parents | cbc402e64d83 |
children | 12884915a8e4 |
line wrap: on
line diff
--- a/liboctave/dNDArray.h +++ b/liboctave/dNDArray.h @@ -170,13 +170,7 @@ extern OCTAVE_API NDArray real (const ComplexNDArray& a); extern OCTAVE_API NDArray imag (const ComplexNDArray& a); -extern OCTAVE_API NDArray min (double d, const NDArray& m); -extern OCTAVE_API NDArray min (const NDArray& m, double d); -extern OCTAVE_API NDArray min (const NDArray& a, const NDArray& b); - -extern OCTAVE_API NDArray max (double d, const NDArray& m); -extern OCTAVE_API NDArray max (const NDArray& m, double d); -extern OCTAVE_API NDArray max (const NDArray& a, const NDArray& b); +MINMAX_DECLS (NDArray, double, OCTAVE_API) NDS_CMP_OP_DECLS (NDArray, double, OCTAVE_API) NDS_BOOL_OP_DECLS (NDArray, double, OCTAVE_API)