aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/QuickStart_example2_dynamic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/QuickStart_example2_dynamic.cpp')
-rw-r--r--doc/examples/QuickStart_example2_dynamic.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/examples/QuickStart_example2_dynamic.cpp b/doc/examples/QuickStart_example2_dynamic.cpp
index 672ac82e9..ff6746e21 100644
--- a/doc/examples/QuickStart_example2_dynamic.cpp
+++ b/doc/examples/QuickStart_example2_dynamic.cpp
@@ -6,10 +6,10 @@ using namespace std;
int main()
{
- MatrixXf m = MatrixXf::Random(3,3);
- m = (m + MatrixXf::Constant(3,3,1.2)) * 50;
+ MatrixXd m = MatrixXd::Random(3,3);
+ m = (m + MatrixXd::Constant(3,3,1.2)) * 50;
cout << "m =" << endl << m << endl;
- VectorXf v(3);
+ VectorXd v(3);
v << 1, 2, 3;
cout << "m * v =" << endl << m * v << endl;
}