2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-23 04:02:10 +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_vector<double> v (3, 3);
mapped_vector<double> v (3, 3);
for (unsigned i = 0; i < v.size (); ++ i)
v (i) = i;
std::cout << v << std::endl;