Mercurial > hg > octave-nkf
diff liboctave/bsxfun-decl.h @ 9827:c15a5ed0da58
optimize bsxfun (@power, ...)
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 18 Nov 2009 12:03:07 +0100 |
parents | 7bda650b691a |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/liboctave/bsxfun-decl.h +++ b/liboctave/bsxfun-decl.h @@ -27,6 +27,9 @@ #define BSXFUN_OP_DECL(OP, ARRAY, API) \ extern API ARRAY bsxfun_ ## OP (const ARRAY&, const ARRAY&); +#define BSXFUN_OP2_DECL(OP, ARRAY, ARRAY1, ARRAY2, API) \ +extern API ARRAY bsxfun_ ## OP (const ARRAY1&, const ARRAY2&); + #define BSXFUN_REL_DECL(OP, ARRAY, API) \ extern API boolNDArray bsxfun_ ## OP (const ARRAY&, const ARRAY&);