aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/QuickStart_example2_fixed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/QuickStart_example2_fixed.cpp')
-rw-r--r--doc/examples/QuickStart_example2_fixed.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/examples/QuickStart_example2_fixed.cpp b/doc/examples/QuickStart_example2_fixed.cpp
new file mode 100644
index 000000000..6d7d63d15
--- /dev/null
+++ b/doc/examples/QuickStart_example2_fixed.cpp
@@ -0,0 +1,15 @@
+#include <iostream>
+#include <Eigen/Dense>
+
+using Eigen::Matrix3d;
+using Eigen::Vector3d;
+
+int main(int, char *[])
+{
+ Matrix3d m;
+ for (int rowIndex = 0; rowIndex < 3; ++rowIndex)
+ for (int columnIndex = 0; columnIndex < 3; ++columnIndex)
+ m(rowIndex, columnIndex) = rowIndex + 0.01 * columnIndex;
+ Vector3d v = Vector3d::Ones();
+ std::cout << m * v << std::endl;
+}