DenseMatrix
Copyright (C) 2005 IENT-RWTH Aachen
template<class V,class A>
struct DenseMatrix : public reference_matrix_generator_traits<V>
Dense matrix type
Generic Parameters
V | Type of the elements |
A | Optional allocator |
Example
DenseMatrix<int>::self X(3,3,"1 2 3 4 5 6 7 8 9"); typedef DenseMatrix<complex<float> >::self MyMatrix;