eigen/doc/examples/QuickStart_example2_fixed.cpp
2010-06-27 19:37:16 +02:00

16 lines
289 B
C++

#include <iostream>
#include <Eigen/Dense>
using namespace Eigen;
using namespace std;
int main()
{
Matrix3f m = Matrix3f::Random();
m = (m + Matrix3f::Constant(1.2)) * 50;
cout << "m =" << endl << m << endl;
Vector3f v(1,2,3);
cout << "m * v =" << endl << m * v << endl;
}