Boost logo

Ublas :

From: Georg Baum (Georg.Baum_at_[hidden])
Date: 2005-08-23 04:00:51


Am Dienstag, 23. August 2005 10:15 schrieb Timo.J.Mustonen_at_[hidden]:

> The question is that what is the correct way to instantiate a vector (or
> matrix) so that elements are zeroed in version 1.33 like they were in older
> version?

matrix<double> a = zero_matrix<double>(size1, size2);
vector<double> b = zero_vector<double>(size);

Georg