Changeset 136 for trunk/CrossPare/src/de/ugoe/cs/cpdp/util/WekaUtils.java
- Timestamp:
- 07/18/16 13:44:58 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/util/WekaUtils.java
r135 r136 38 38 */ 39 39 public static class DistChar { 40 41 /** 42 * mean distance 43 */ 40 44 public final double mean; 45 46 /** 47 * standard deviation 48 */ 41 49 public final double std; 50 51 /** 52 * minimal value 53 */ 42 54 public final double min; 55 56 /** 57 * maximal value 58 */ 43 59 public final double max; 60 61 /** 62 * number of instances 63 */ 44 64 public final int num; 45 65 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 */ 46 77 private DistChar(double mean, double std, double min, double max, int num) { 47 78 this.mean = mean;
Note: See TracChangeset
for help on using the changeset viewer.