Class DenseMatrix

template<typename VALUE_TYPE>
class DenseMatrix

Model for fully populated matrices.

The class DenseMatrix<T> models matrices with coefficients of type T where no coefficient is a priori vanishing. For a dense matrix of size N, coefficients are stored row-wise in a single dynamically allocated array of size NxN:

The storage scheme is that, if A refers to a dense matrix of size N, the coefficient A_jk is stored in position j*N+k.