diff --git a/doc/container.htm b/doc/container.htm
index 20774bd0..fab3a79f 100644
--- a/doc/container.htm
+++ b/doc/container.htm
@@ -166,7 +166,7 @@ size.
vector<T> , bounded_vector<T, N>
unit_vector<T> , zero_vector<T> , scalar_vector<T>
-sparse_vector<T> , compressed_vector , coordinate_vector
+mapped_vector<T> , compressed_vector , coordinate_vector
Matrix
Description
@@ -331,7 +331,7 @@ size.
matrix<T> , bounded_matrix<T, M, N>
identity_matrix<T> , zero_matrix<T> , scalar_matrix<T>
triangular_matrix<T> , symmetric_matrix<T> , banded_matrix<T>
-sparse_matrix<T> , compressed_matrix , coordinate_matrix
+mapped_matrix<T> , compressed_matrix , coordinate_matrix
Copyright (©) 2000-2002 Joerg Walter, Mathias Koch
diff --git a/doc/samples/Jamfile b/doc/samples/Jamfile
index 5f08fe51..7da70284 100644
--- a/doc/samples/Jamfile
+++ b/doc/samples/Jamfile
@@ -80,8 +80,8 @@ exe zero_vector
<*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
;
-exe sparse_vector
- : sparse_vector.cpp
+exe mapped_vector
+ : mapped_vector.cpp
: $(BOOST_ROOT)
$(BOOST_ROOT)
<*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
@@ -208,8 +208,8 @@ exe zero_matrix
<*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
;
-exe sparse_matrix
- : sparse_matrix.cpp
+exe mapped_matrix
+ : mapped_matrix.cpp
: $(BOOST_ROOT)
$(BOOST_ROOT)
<*>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
diff --git a/doc/samples/Jamfile.v2 b/doc/samples/Jamfile.v2
index d9c142c5..d32c8742 100644
--- a/doc/samples/Jamfile.v2
+++ b/doc/samples/Jamfile.v2
@@ -46,8 +46,8 @@ exe zero_vector
: zero_vector.cpp
;
-exe sparse_vector
- : sparse_vector.cpp
+exe mapped_vector
+ : mapped_vector.cpp
;
exe compressed_vector
@@ -110,8 +110,8 @@ exe zero_matrix
: zero_matrix.cpp
;
-exe sparse_matrix
- : sparse_matrix.cpp
+exe mapped_matrix
+ : mapped_matrix.cpp
;
exe compressed_matrix
diff --git a/doc/samples/sparse_matrix.cpp b/doc/samples/sparse_matrix.cpp
index 84d4fc6b..75a9887b 100644
--- a/doc/samples/sparse_matrix.cpp
+++ b/doc/samples/sparse_matrix.cpp
@@ -19,7 +19,7 @@
int main () {
using namespace boost::numeric::ublas;
- sparse_matrix m (3, 3, 3 * 3);
+ mapped_matrix 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;
diff --git a/doc/samples/sparse_vector.cpp b/doc/samples/sparse_vector.cpp
index f130d5bd..4e65196a 100644
--- a/doc/samples/sparse_vector.cpp
+++ b/doc/samples/sparse_vector.cpp
@@ -19,7 +19,7 @@
int main () {
using namespace boost::numeric::ublas;
- sparse_vector v (3, 3);
+ mapped_vector v (3, 3);
for (unsigned i = 0; i < v.size (); ++ i)
v (i) = i;
std::cout << v << std::endl;