blob: 8c7e1e26b7f3ef2b6bf92ee473e23388b8c5447b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* iemmatrix
*
* objects for manipulating simple matrices
* mostly refering to matlab/octave matrix functions
*
* Copyright (c) IOhannes m zmölnig, forum::für::umläute
* IEM, Graz, Austria
*
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
*
*/
#include "iemmatrix.h"
#include "iemmatrix_sources.c"
void iemmatrix_setup(){
post("");
post("iemmatrix "VERSION);
post("\tobjects for manipulating 2d-matrices");
post("\t(c) IOhannes m zmölnig, Thomas Musil, Franz Zotter :: iem, 2001-2005");
post("\tcompiled "__DATE__" : "__TIME__);
post("");
iemmatrix_sources_setup();
}
|