You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
230 B

  1. MatrixXf matA(2,2), matB(2,2);
  2. matA << 2, 0, 0, 2;
  3. // Simple but not quite as efficient
  4. matB = matA * matA;
  5. cout << matB << endl << endl;
  6. // More complicated but also more efficient
  7. matB.noalias() = matA * matA;
  8. cout << matB;