Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 11:35:06 (10 years ago)
Author:
tsteinre
Message:
  • rewritten Item descriptions for Transformations.
File:
1 edited

Legend:

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

    r10778 r10808  
    3232
    3333namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    34   [Item("LinearTransformation", "Represents a linear transformation with multiplication and addition.")]
     34  [Item("LinearTransformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")]
    3535  public class LinearTransformation : Transformation<double> {
    3636    protected const string MultiplierParameterName = "Multiplier";
     
    6969    public LinearTransformation(IEnumerable<string> allowedColumns)
    7070      : base(allowedColumns) {
    71       Parameters.Add(new ValueParameter<DoubleValue>(MultiplierParameterName, "Multiplier for linear transformation", new DoubleValue(1.0)));
    72       Parameters.Add(new ValueParameter<DoubleValue>(AddendParameterName, "Addend for linear transformation", new DoubleValue(0.0)));
     71      Parameters.Add(new ValueParameter<DoubleValue>(MultiplierParameterName, "k | Multiplier for linear transformation", new DoubleValue(1.0)));
     72      Parameters.Add(new ValueParameter<DoubleValue>(AddendParameterName, "d | Addend for linear transformation", new DoubleValue(0.0)));
    7373    }
    7474
Note: See TracChangeset for help on using the changeset viewer.