TinyMatrix
Copyright (C) 2005 IENT-RWTH Aachen
template<int M,int N,class V>
struct TinyMatrix : public reference_matrix_generator_traits<V>
Tiny dense matrix type
Generic Parameters
| M | Number of rows |
| N | Number of columns |
| V | Type of the elements |
Example
TinyMatrix<3,3,int>::self X("1 2 3 4 5 6 7 8 9");
typedef TinyDenseMatrix<3,3,complex<float> >::self MyMatrix;

