Free cookie consent management tool by TermsFeed Policy Generator

Changeset 333


Ignore:
Timestamp:
06/23/08 19:42:22 (16 years ago)
Author:
gkronber
Message:

minor code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/Dataset.cs

    r312 r333  
    3232
    3333    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
    3442    public string Name {
    3543      get { return name; }
     
    3745    }
    3846
    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 
    5447    public int Rows {
    5548      get { return rows; }
    5649      set { rows = value; }
    5750    }
    58     private int columns;
    5951
    6052    public int Columns {
    6153      get { return columns; }
    6254      set { columns = value; }
     55    }
     56
     57    public double[] ScalingFactor {
     58      get { return scalingFactor; }
     59    }
     60    public double[] ScalingOffset {
     61      get { return scalingOffset; }
    6362    }
    6463
Note: See TracChangeset for help on using the changeset viewer.