~ubuntu-branches/debian/sid/geogebra/sid

« back to all changes in this revision

Viewing changes to geogebra/kernel/statistics/AlgoVariance.java

  • Committer: Package Import Robot
  • Author(s): Giovanni Mascellani
  • Date: 2012-01-10 11:37:41 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120110113741-satwohsd4de4ite1
Tags: 4.0.19.0+dfsg1-1
* New upstream version (closes: #649893).
* Update dependency: icedtea-plugin -> icedtea-netx-common (LP: #893007).
* New thumbnailer configuration compatible with Gnome 3.
* Package building is now managed by javahelper instead of upstream
  build.xml.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
GeoGebra - Dynamic Mathematics for Everyone
3
 
http://www.geogebra.org
4
 
 
5
 
This file is part of GeoGebra.
6
 
 
7
 
This program is free software; you can redistribute it and/or modify it 
8
 
under the terms of the GNU General Public License as published by 
9
 
the Free Software Foundation.
10
 
 
11
 
*/
12
 
 
13
 
package geogebra.kernel.statistics;
14
 
 
15
 
import geogebra.kernel.GeoList;
16
 
import geogebra.kernel.Construction;
17
 
import geogebra.kernel.statistics.AlgoStats1D;
18
 
 
19
 
 
20
 
/**
21
 
 * Variance of a list
22
 
 * @author Michael Borcherds
23
 
 * @version 2008-02-18
24
 
 */
25
 
 
26
 
public class AlgoVariance extends AlgoStats1D {
27
 
 
28
 
        private static final long serialVersionUID = 1L;
29
 
 
30
 
        public AlgoVariance(Construction cons, String label, GeoList geoList) {
31
 
        super(cons,label,geoList,AlgoStats1D.STATS_VARIANCE);
32
 
    }
33
 
 
34
 
    protected String getClassName() {
35
 
        return "AlgoVariance";
36
 
    }
37
 
}
 
1
/* 
 
2
GeoGebra - Dynamic Mathematics for Everyone
 
3
http://www.geogebra.org
 
4
 
 
5
This file is part of GeoGebra.
 
6
 
 
7
This program is free software; you can redistribute it and/or modify it 
 
8
under the terms of the GNU General Public License as published by 
 
9
the Free Software Foundation.
 
10
 
 
11
*/
 
12
 
 
13
package geogebra.kernel.statistics;
 
14
 
 
15
import geogebra.kernel.Construction;
 
16
import geogebra.kernel.GeoList;
 
17
 
 
18
 
 
19
/**
 
20
 * Variance of a list
 
21
 * @author Michael Borcherds
 
22
 * @version 2008-02-18
 
23
 */
 
24
 
 
25
public class AlgoVariance extends AlgoStats1D {
 
26
 
 
27
        private static final long serialVersionUID = 1L;
 
28
 
 
29
        public AlgoVariance(Construction cons, String label, GeoList geoList) {
 
30
        super(cons,label,geoList,AlgoStats1D.STATS_VARIANCE);
 
31
    }
 
32
 
 
33
    public String getClassName() {
 
34
        return "AlgoVariance";
 
35
    }
 
36
}