aboutsummaryrefslogtreecommitdiff
path: root/src/iemmatrix.c
blob: 244eb7942be36d3cbd72d4fc10563618afb55d36 (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
28
29
/*
 *  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"
void iemmatrix_sources_setup(void);

void iemmatrix_setup(){
  post("");
  post("iemmatrix "VERSION);
  post("\tobjects for manipulating 2d-matrices");
  post("\t(c) 2001-2015 iem");
  post("\t\tIOhannes m zmölnig");
  post("\t\tThomas Musil");
  post("\t\tFranz Zotter");
  post("\tcompiled "__DATE__" : "__TIME__);
  post("");

  iemmatrix_sources_setup();
}