|
using | Eigen::AngleAxisld |
| Long double Eigen::AngleAxis.
|
|
using | Eigen::Array3ld |
| Long double 3x1 Eigen::Array.
|
|
using | Eigen::Array5d |
| Double 5x1 Eigen::Array.
|
|
using | Eigen::Array6d |
| Double 6x1 Eigen::Array.
|
|
using | Eigen::Matrix3ld |
| Long double 3x3 Eigen::Matrix.
|
|
using | Eigen::Matrix4ld |
| Long double 4x4 Eigen::Matrix.
|
|
using | Eigen::Matrix5d |
| Double 5x5 Eigen::Matrix.
|
|
using | Eigen::Matrix6d |
| Double 6x6 Eigen::Matrix.
|
|
using | Eigen::Quaternionld |
| Long double Eigen::Quaternion.
|
|
using | Eigen::Vector3ld |
| Long double 3x1 Eigen::Vector.
|
|
using | Eigen::Vector4ld |
| Long double 3x1 Eigen::Vector.
|
|
using | Eigen::Vector5d |
| Double 5x1 Eigen::Vector.
|
|
using | Eigen::Vector6d |
| Double 6x1 Eigen::Vector.
|
|
|
template<typename _Scalar , int _Rows, int _Cols> |
void | Eigen::from_json (const json &j, Matrix< _Scalar, _Rows, _Cols > &matrix) |
| Converts the provided json object into a matrix.
|
|
template<typename Derived > |
void | NAV::removeCols (Eigen::DenseBase< Derived > &matrix, const std::vector< int > &colIndices) |
| Removes cols from a matrix or vector.
|
|
template<typename Derived > |
void | NAV::removeCols (Eigen::DenseBase< Derived > &matrix, size_t index, size_t length) |
| Removes columns from a matrix or vector.
|
|
template<typename Derived > |
void | NAV::removeRows (Eigen::DenseBase< Derived > &matrix, const std::vector< int > &rowIndices) |
| Removes rows from a matrix or vector.
|
|
template<typename Derived > |
void | NAV::removeRows (Eigen::DenseBase< Derived > &matrix, size_t index, size_t length) |
| Removes rows from a matrix or vector.
|
|
template<typename Derived > |
void | NAV::removeRowsAndCols (Eigen::DenseBase< Derived > &matrix, const std::vector< int > &rowIndices, const std::vector< int > &colIndices) |
| Removes rows and columns from a matrix or vector.
|
|
template<typename Derived > |
void | NAV::removeRowsAndCols (Eigen::DenseBase< Derived > &matrix, size_t row, size_t rows, size_t col, size_t cols) |
| Removes rows and columns from a matrix or vector.
|
|
template<typename _Scalar , int _Rows, int _Cols> |
void | Eigen::to_json (json &j, const Matrix< _Scalar, _Rows, _Cols > &matrix) |
| Converts the provided matrix into a json objetc.
|
|