Skip to content
Snippets Groups Projects
Commit 04fe2bd8 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Update wolf.h

parent ac32c2a7
No related branches found
No related tags found
1 merge request!328WIP: Resolve "Remove wolf::Scalar and use double instead"
Pipeline #4665 failed
...@@ -84,14 +84,14 @@ namespace Eigen // Eigen namespace extension ...@@ -84,14 +84,14 @@ namespace Eigen // Eigen namespace extension
// 1. Vectors and Matrices // 1. Vectors and Matrices
typedef Matrix<double, 1, 1, RowMajor> Matrix1d; ///< 2x2 matrix of real double type typedef Matrix<double, 1, 1, RowMajor> Matrix1d; ///< 2x2 matrix of real double type
typedef Matrix<double, 6, 6, RowMajor> Matrix6d; ///< 6x6 matrix of real double type typedef Matrix<double, 6, 6, RowMajor> Matrix6d; ///< 6x6 matrix of real double type
//typedef Matrix<double, 7, 7, RowMajor> Matrix7d; ///< 7x7 matrix of real double type typedef Matrix<double, 7, 7, RowMajor> Matrix7d; ///< 7x7 matrix of real double type
typedef Matrix<double, 1, 1> Vector1d; ///< 1-vector of real double type typedef Matrix<double, 1, 1> Vector1d; ///< 1-vector of real double type
//typedef Matrix<double, 5, 1> Vector5d; ///< 5-vector of real double type typedef Matrix<double, 5, 1> Vector5d; ///< 5-vector of real double type
typedef Matrix<double, 6, 1> Vector6d; ///< 6-vector of real double type typedef Matrix<double, 6, 1> Vector6d; ///< 6-vector of real double type
typedef Matrix<double, 7, 1> Vector7d; ///< 7-vector of real double type typedef Matrix<double, 7, 1> Vector7d; ///< 7-vector of real double type
//typedef Matrix<double, 8, 1> Vector8d; ///< 8-vector of real double type typedef Matrix<double, 8, 1> Vector8d; ///< 8-vector of real double type
//typedef Matrix<double, 9, 1> Vector9d; ///< 9-vector of real double type typedef Matrix<double, 9, 1> Vector9d; ///< 9-vector of real double type
//typedef Matrix<double, 10, 1> Vector10d; ///< 10-vector of real double type typedef Matrix<double, 10, 1> Vector10d; ///< 10-vector of real double type
// 2. Sparse matrix // 2. Sparse matrix
typedef SparseMatrix<double, RowMajor, int> SparseMatrixd; typedef SparseMatrix<double, RowMajor, int> SparseMatrixd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment