00001 /* compile this with g++ -Wall -lm -L. -lmatrix_debug -o example example.cpp */ 00002 00003 #include <iostream> 00004 #include <math.h> 00005 00006 #include <selforg/matrix.h> 00007 00008 using namespace matrix; 00009 00010 int main(){ 00011 ////////// matrix construction 00012 // all matrices are initialised with 0 elements 00013 Matrix m0; // 0-matrix (size is 0x0) 00014 m0.set(5,1); // change matrix to be a 5x1 matrix (column vector) 00015 Matrix m1(3,3); // 3x3-matrix 00016 double data[9] = {1., 0., 1., 0.1, 0.4, 0.5, -2., 0.1, 2.}; 00017 m1.set(3,3,data); // change matrix to be 3x3 matrix with initialised elements 00018 Matrix m2(3,3,data); // 3x3 matrix with initialised elements 00019 00020 ////////// Accessing and printing 00021 cout << m2.val(0,0) << endl; // Element with index 0,0 00022 m2.val(2,1) = 3.4; // assign value to element at 2,1 00023 cout << m2.val(2,1) << endl; // Element with index 2,1 00024 00025 cout << m2; // show matrix 00026 cout << m2.row(0); // show first row which is row-vector 00027 cout << m2.column(2); // show third column which is column-vector 00028 00029 ////////// Operations 00030 Matrix m3 = m2 + m2 - m2 * m2; // addition subtraction and multiplication 00031 cout << m3; 00032 Matrix m4 = (m3^T) * (m3^-1) * (m3.multMT()); // transpose and invert and fast version of matrix*matrix^T 00033 // (parentheses needed because ^ bind less than *) 00034 Matrix m5 = m4*0.3; // multiplication with scalar (just right side) 00035 Matrix m6 = m4.multrowwise(m3.column(0)); // multiply m4 rowwise, 00036 // each row with the appropriate element of first column of m3 00037 00038 Matrix m7 = m6.map(sin); // apply sin function to all matrix elements 00039 cout << m7; 00040 00041 return 0; 00042 }
1.4.7