Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / examples / QuickStart_example2_fixed.cpp
blobd9117527391a7e167511513f864f9658432a764d
1 #include <iostream>
2 #include <Eigen/Dense>
4 using namespace Eigen;
5 using namespace std;
7 int main()
9 Matrix3d m = Matrix3d::Random();
10 m = (m + Matrix3d::Constant(1.2)) * 50;
11 cout << "m =" << endl << m << endl;
12 Vector3d v(1,2,3);
14 cout << "m * v =" << endl << m * v << endl;