mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Finish prefixing everything with "Ei"
This commit is contained in:
@@ -44,9 +44,9 @@ template<typename MatrixType> void matrixManip(const MatrixType& m)
|
||||
|
||||
void EigenTest::testMatrixManip()
|
||||
{
|
||||
matrixManip(Matrix<int, 2, 3>());
|
||||
matrixManip(Matrix<double, 3, 3>());
|
||||
matrixManip(Matrix<complex<float>, 4,3>());
|
||||
matrixManip(EiMatrix<int, 2, 3>());
|
||||
matrixManip(EiMatrix<double, 3, 3>());
|
||||
matrixManip(EiMatrix<complex<float>, 4,3>());
|
||||
matrixManip(EiMatrixXi(2, 2));
|
||||
matrixManip(EiMatrixXd(3, 5));
|
||||
matrixManip(EiMatrixXcf(4, 4));
|
||||
|
||||
Reference in New Issue
Block a user