comparison liboctave/lo-mappers.h @ 10436:00219bdd2d17

implement built-in rem and mod
author Jaroslav Hajek <highegg@gmail.com>
date Tue, 23 Mar 2010 13:01:34 +0100
parents 9a16a61ed43d
children 4d1fc073fbb7
comparison
equal deleted inserted replaced
10435:6a271334750c 10436:00219bdd2d17
35 extern OCTAVE_API double real (double x); 35 extern OCTAVE_API double real (double x);
36 extern OCTAVE_API double xround (double x); 36 extern OCTAVE_API double xround (double x);
37 extern OCTAVE_API double xroundb (double x); 37 extern OCTAVE_API double xroundb (double x);
38 extern OCTAVE_API double signum (double x); 38 extern OCTAVE_API double signum (double x);
39 extern OCTAVE_API double xtrunc (double x); 39 extern OCTAVE_API double xtrunc (double x);
40 extern OCTAVE_API double mod (double x, double y);
40 extern OCTAVE_API double xlog2 (double x); 41 extern OCTAVE_API double xlog2 (double x);
41 extern OCTAVE_API Complex xlog2 (const Complex& x); 42 extern OCTAVE_API Complex xlog2 (const Complex& x);
42 extern OCTAVE_API double xlog2 (double x, int& exp); 43 extern OCTAVE_API double xlog2 (double x, int& exp);
43 extern OCTAVE_API Complex xlog2 (const Complex& x, int& exp); 44 extern OCTAVE_API Complex xlog2 (const Complex& x, int& exp);
44 extern OCTAVE_API double xexp2 (double x); 45 extern OCTAVE_API double xexp2 (double x);
123 extern OCTAVE_API float real (float x); 124 extern OCTAVE_API float real (float x);
124 extern OCTAVE_API float xround (float x); 125 extern OCTAVE_API float xround (float x);
125 extern OCTAVE_API float xroundb (float x); 126 extern OCTAVE_API float xroundb (float x);
126 extern OCTAVE_API float signum (float x); 127 extern OCTAVE_API float signum (float x);
127 extern OCTAVE_API float xtrunc (float x); 128 extern OCTAVE_API float xtrunc (float x);
129 extern OCTAVE_API float mod (float x, float y);
128 extern OCTAVE_API float xlog2 (float x); 130 extern OCTAVE_API float xlog2 (float x);
129 extern OCTAVE_API FloatComplex xlog2 (const FloatComplex& x); 131 extern OCTAVE_API FloatComplex xlog2 (const FloatComplex& x);
130 extern OCTAVE_API float xlog2 (float x, int& exp); 132 extern OCTAVE_API float xlog2 (float x, int& exp);
131 extern OCTAVE_API FloatComplex xlog2 (const FloatComplex& x, int& exp); 133 extern OCTAVE_API FloatComplex xlog2 (const FloatComplex& x, int& exp);
132 extern OCTAVE_API float xexp2 (float x); 134 extern OCTAVE_API float xexp2 (float x);