Changeset 333 for trunk/sources/HeuristicLab.DataAnalysis
- Timestamp:
- 06/23/08 19:42:22 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAnalysis/Dataset.cs
r312 r333 32 32 33 33 private string name; 34 private double[] samples; 35 private int rows; 36 private int columns; 37 private Dictionary<int, Dictionary<int, double>>[] cachedMeans; 38 private Dictionary<int, Dictionary<int, double>>[] cachedRanges; 39 private double[] scalingFactor; 40 private double[] scalingOffset; 41 34 42 public string Name { 35 43 get { return name; } … … 37 45 } 38 46 39 private double[] samples;40 private int rows;41 private Dictionary<int, Dictionary<int, double>>[] cachedMeans;42 private Dictionary<int, Dictionary<int, double>>[] cachedRanges;43 private double[] scalingFactor;44 45 public double[] ScalingFactor {46 get { return scalingFactor; }47 }48 private double[] scalingOffset;49 50 public double[] ScalingOffset {51 get { return scalingOffset; }52 }53 54 47 public int Rows { 55 48 get { return rows; } 56 49 set { rows = value; } 57 50 } 58 private int columns;59 51 60 52 public int Columns { 61 53 get { return columns; } 62 54 set { columns = value; } 55 } 56 57 public double[] ScalingFactor { 58 get { return scalingFactor; } 59 } 60 public double[] ScalingOffset { 61 get { return scalingOffset; } 63 62 } 64 63
Note: See TracChangeset
for help on using the changeset viewer.