2010-06-17 19:12:40 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <Eigen/Dense>
|
|
|
|
|
2010-06-28 01:37:16 +08:00
|
|
|
using namespace Eigen;
|
|
|
|
using namespace std;
|
2010-06-17 19:12:40 +08:00
|
|
|
|
2010-06-25 22:04:10 +08:00
|
|
|
int main()
|
2010-06-17 19:12:40 +08:00
|
|
|
{
|
2012-08-17 21:49:18 +08:00
|
|
|
MatrixXd m = MatrixXd::Random(3,3);
|
|
|
|
m = (m + MatrixXd::Constant(3,3,1.2)) * 50;
|
2010-06-28 01:37:16 +08:00
|
|
|
cout << "m =" << endl << m << endl;
|
2012-08-17 21:49:18 +08:00
|
|
|
VectorXd v(3);
|
2010-06-28 01:37:16 +08:00
|
|
|
v << 1, 2, 3;
|
|
|
|
cout << "m * v =" << endl << m * v << endl;
|
2010-06-17 19:12:40 +08:00
|
|
|
}
|