Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/14/14 10:31:55 (10 years ago)
Author:
tsteinre
Message:
  • renamed StandardDeviationTransformation to ShiftStandardDistributionTransformation
  • renamed ShiftDataToRangeTransformation to ShiftToRangeTransformation
File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftToRangeTransformation.cs

    r10840 r10841  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ShiftDataToRangeTransformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
    11   public class ShiftDataToRangeTransformation : LinearTransformation {
     10  [Item("ShiftToRangeTransformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
     11  public class ShiftToRangeTransformation : LinearTransformation {
    1212    protected const string RangeParameterName = "Range";
    1313
     
    2525
    2626    [StorableConstructor]
    27     protected ShiftDataToRangeTransformation(bool deserializing) : base(deserializing) { }
    28     protected ShiftDataToRangeTransformation(Transformation<double> original, Cloner cloner)
     27    protected ShiftToRangeTransformation(bool deserializing) : base(deserializing) { }
     28    protected ShiftToRangeTransformation(Transformation<double> original, Cloner cloner)
    2929      : base(original, cloner) {
    3030    }
    31     public ShiftDataToRangeTransformation(IEnumerable<string> allowedColumns)
     31    public ShiftToRangeTransformation(IEnumerable<string> allowedColumns)
    3232      : base(allowedColumns) {
    3333      MultiplierParameter.Hidden = true;
     
    3737
    3838    public override IDeepCloneable Clone(Cloner cloner) {
    39       return new ShiftDataToRangeTransformation(this, cloner);
     39      return new ShiftToRangeTransformation(this, cloner);
    4040    }
    4141
Note: See TracChangeset for help on using the changeset viewer.