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:
parent
47c3ecedbd
commit
5121bcfcb3
|
@ -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) {
|
|
@ -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>();
|
Loading…
Reference in New Issue