2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-25 16:52:09 +00:00

Update doc matches name change sparse_ to mapped_

svn path=/trunk/boost/libs/numeric/ublas/; revision=27642
This commit is contained in:
Michael Stevens
2005-03-14 13:28:59 +00:00
parent 03ab689069
commit 7e2f9e06f6
5 changed files with 12 additions and 12 deletions

View File

@@ -19,7 +19,7 @@
int main () {
using namespace boost::numeric::ublas;
sparse_matrix<double> m (3, 3, 3 * 3);
mapped_matrix<double> m (3, 3, 3 * 3);
for (unsigned i = 0; i < m.size1 (); ++ i)
for (unsigned j = 0; j < m.size2 (); ++ j)
m (i, j) = 3 * i + j;