I need to use the underlying arrays of several eigen matrices that could be RowMajor or ColumnMajor.
Is there any way to check which of the formats is used? (besides comparing the first column, with the first n elements of the row/column)
I found the isRowMajor as part of an Enum in the base class for Eigen, but I don't know how to access it from inside my code.