How do you convert an ArrayXXd
array to a MatrixXd
?
So far I've done
MatrixXd temp_mat = my_array;
and the implicit conversion seems to work fine, but is this the way it is supposed to be done? Or is there some explicit conversion operation I should be doing?