2010/8/23  
<lfrfly@xxxxxxxxxxx>
Eigen defaults to column-major.
All I can think of is that it's to simplify interactions with LAPACK implementations.
And with OpenGL too, and..... at the end of the day, we just have to pick a default :-)
Benoit
 
If you want row-major with Eigen you can do:
typedef Matrix<float,2,2,RowMajor> MyRowMajorMatrixType;
 
That's what I need, thanks.