Update documentation about the examples, hopefully clarifying a little bit.

This commit is contained in:
Ryan Curtin
2024-09-30 11:48:20 -04:00
parent d89eaaa438
commit f11558bcb4
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -449,8 +449,8 @@ std::cout << std::endl;
---
Build two `BallTree`s on subsets of the corel dataset and compute various
bounding quantities.
Build two `BallTree`s on subsets of the corel dataset and compute minimum and
maximum distances between different nodes in the tree.
```c++
// See https://datasets.mlpack.org/corel-histogram.csv.
+2 -2
View File
@@ -1376,8 +1376,8 @@ std::cout << "Center of tree: " << center.t();
---
Build two `BinarySpaceTree`s on subsets of the corel dataset and compute various
bounding quantities.
Build two `BinarySpaceTree`s on subsets of the corel dataset and compute minimum
and maximum distances between different nodes in the tree.
```c++
// See https://datasets.mlpack.org/corel-histogram.csv.
+2 -2
View File
@@ -443,8 +443,8 @@ std::cout << "Center of kd-tree: " << center.t();
---
Build two `KDTree`s on subsets of the corel dataset and compute various
bounding quantities.
Build two `KDTree`s on subsets of the corel dataset and compute minimum and
maximum distances between different nodes in the tree.
```c++
// See https://datasets.mlpack.org/corel-histogram.csv.