Rename userguide examples.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1486415 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-05-26 14:51:38 +00:00
parent 47c3ecedbd
commit 5121bcfcb3
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ import org.apache.commons.math3.util.Pair;
* Based on
* <a href="http://scikit-learn.org/stable/auto_examples/cluster/plot_cluster_comparison.html">scikit learn</a>.
*/
public class ClusteringExamples {
public class ClusterAlgorithmComparison {
public static List<Vector2D> makeCircles(int samples, boolean shuffle, double noise, double factor, final RandomGenerator random) {
if (factor < 0 || factor > 1) {

View File

@ -48,7 +48,7 @@ import org.apache.commons.math3.util.Pair;
/**
* Plots 2D samples drawn from various pseudo / quasi-random generators.
*/
public class RandomVectorGeneratorExamples {
public class LowDiscrepancyGeneratorComparison {
public static List<Vector2D> makeCircle(int samples, final RandomVectorGenerator generator) {
List<Vector2D> points = new ArrayList<Vector2D>();