blob: 50bc456857b26ea38cec8d8d4fc32b4762e18cc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_le
/* 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"
|