From: Steven Watanabe (watanabesj_at_[hidden])
Date: 2008-08-06 14:30:32


AMDG

Ed wrote:
> But I want to use Boost matrix where I don't know the size at the time
> the matrix is declared.

ublas::matrix has a resize function.

matrix<double> m;
//...
m.resize(3, 3);

In Christ,
Steven Watanabe