2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-24 04:22:12 +00:00

Update doc matches name change sparse_ to mapped_

This commit is contained in:
Michael Stevens
2005-03-14 13:28:59 +00:00
parent 6617ba3ae1
commit 308fd81c84
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;