Ignore:
Timestamp:
07/18/16 13:44:58 (8 years ago)
Author:
sherbold
Message:
  • more code documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/util/WekaUtils.java

    r135 r136  
    3838     */ 
    3939    public static class DistChar { 
     40         
     41        /** 
     42         * mean distance 
     43         */ 
    4044        public final double mean; 
     45         
     46        /** 
     47         * standard deviation 
     48         */ 
    4149        public final double std; 
     50         
     51        /** 
     52         * minimal value 
     53         */ 
    4254        public final double min; 
     55         
     56        /** 
     57         * maximal value 
     58         */ 
    4359        public final double max; 
     60         
     61        /** 
     62         * number of instances 
     63         */ 
    4464        public final int num; 
    4565 
     66        /** 
     67         * <p> 
     68         * Constructor. Creates a new DistChar object.  
     69         * </p> 
     70         * 
     71         * @param mean mean distance between instances 
     72         * @param std standard deviation of distances between instances 
     73         * @param min minimal distance between instances 
     74         * @param max maximal distance between instances 
     75         * @param num number of instance 
     76         */ 
    4677        private DistChar(double mean, double std, double min, double max, int num) { 
    4778            this.mean = mean; 
Note: See TracChangeset for help on using the changeset viewer.