Go to the source code of this file.
|
| | mlpack |
| | Linear algebra utility functions, generally performed on matrices or vectors.
|
| |
| | mlpack::tree |
| | Trees and tree-building procedures.
|
| |
|
| template<typename MetricType , typename StatisticType , typename MatType > |
| using | mlpack::tree::BallTree = BinarySpaceTree< MetricType, StatisticType, MatType, bound::HRectBound, MidpointSplit > |
| | A midpoint-split ball tree. More...
|
| |
| template<typename MetricType , typename StatisticType , typename MatType > |
| using | mlpack::tree::KDTree = BinarySpaceTree< MetricType, StatisticType, MatType, bound::HRectBound, MidpointSplit > |
| | The standard midpoint-split kd-tree. More...
|
| |
| template<typename MetricType , typename StatisticType , typename MatType > |
| using | mlpack::tree::MeanSplitBallTree = BinarySpaceTree< MetricType, StatisticType, MatType, bound::HRectBound, MeanSplit > |
| | A mean-split ball tree. More...
|
| |
| template<typename MetricType , typename StatisticType , typename MatType > |
| using | mlpack::tree::MeanSplitKDTree = BinarySpaceTree< MetricType, StatisticType, MatType, bound::HRectBound, MeanSplit > |
| | A mean-split kd-tree. More...
|
| |