diff --git a/d2/d3b/namespaceqr__algorithm.html b/d2/d3b/namespaceqr__algorithm.html index 186b7a241..53c063c4c 100644 --- a/d2/d3b/namespaceqr__algorithm.html +++ b/d2/d3b/namespaceqr__algorithm.html @@ -285,7 +285,7 @@ template<typename T >
35  const int width = 12;
36  const char separator = ' ';
37 
-
38  out.precision(4);
+
38  out.precision(4);
39  for (size_t row = 0; row < v.size(); row++) {
40  for (size_t col = 0; col < v[row].size(); col++)
41  out << std::right << std::setw(width) << std::setfill(separator)
@@ -298,7 +298,7 @@ template<typename T >
Here is the call graph for this function:
-
+
@@ -336,7 +336,7 @@ template<typename T >
54  const int width = 10;
55  const char separator = ' ';
56 
-
57  out.precision(4);
+
57  out.precision(4);
58  for (size_t row = 0; row < v.size(); row++) {
59  out << std::right << std::setw(width) << std::setfill(separator)
60  << v[row];
@@ -347,7 +347,7 @@ template<typename T >
Here is the call graph for this function:
-
+
@@ -625,6 +625,7 @@ Here is the call graph for this function:
std::size_t
std::setw
T setw(T... args)
std::numeric_limits
+
std::ostream::precision
T precision(T... args)