int main(int, char**)
{
  cout.precision(3);
  MatrixXf m;
m.setRandom(3, 3);
cout << m << endl;

  return 0;
}