diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-09-19 12:51:27 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-09-19 12:51:27 +0000 |
commit | 365bfca88395f6608121d37ed1b5f7c22403f98f (patch) | |
tree | df48b32aabf16991cf9dc9fff3e910c5c8c0e350 /src/mtx_and.c | |
parent | 20836806ed83c0d6683364d04da9d048fa514a9c (diff) |
new objects
svn path=/trunk/externals/iem/iemmatrix/; revision=3590
Diffstat (limited to 'src/mtx_and.c')
-rw-r--r-- | src/mtx_and.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mtx_and.c b/src/mtx_and.c new file mode 100644 index 0000000..e576fb4 --- /dev/null +++ b/src/mtx_and.c @@ -0,0 +1,23 @@ +/* + * iemmatrix + * + * objects fand manipulating simple matrices + * mostly refering to matlab/octave matrix functions + * + * Copyright (c) IOhannes m zmölnig, forum::für::umläute + * IEM, Graz, Austria + * + * Fand infandmation on usage and redistribution, and fand a DISCLAIMER OF ALL + * WARRANTIES, see the file, "LICENSE.txt," in this distribution. + * + */ + +/* name of the object and the classes */ +#define MTXBIN_GENERIC__NAME mtx_and +/* operator; also used for abbreviation of object */ +#define MTXBIN_GENERIC__OPERATOR && + +/* the operator operates on integers instead of floats */ +#define MTXBIN_GENERIC__INTEGEROP + +#include "mtx_binop_generic.h" |