Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10808 for branches


Ignore:
Timestamp:
05/07/14 11:35:06 (10 years ago)
Author:
tsteinre
Message:
  • rewritten Item descriptions for Transformations.
Location:
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
Files:
6 edited

Legend:

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

    r10780 r10808  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ExponentialTransformation", "Represents a exponential transformation.")]
     10  [Item("ExponentialTransformation", "f(x) = b ^ x | Represents a exponential transformation.")]
    1111  public class ExponentialTransformation : Transformation<double> {
    1212    protected const string BaseParameterName = "Base";
     
    3131    public ExponentialTransformation(IEnumerable<string> allowedColumns)
    3232      : base(allowedColumns) {
    33       Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "Base of exp-function", new DoubleValue(Math.E)));
     33      Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "b | Base of exp-function", new DoubleValue(Math.E)));
    3434    }
    3535
  • 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
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LogarithmicTransformation.cs

    r10779 r10808  
    99
    1010namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    11   [Item("LogarithmicTransformation", "Represents a logarithmic transformation.")]
     11  [Item("LogarithmicTransformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")]
    1212  public class LogarithmicTransformation : Transformation<double> {
    1313    protected const string BaseParameterName = "Base";
     
    3232    public LogarithmicTransformation(IEnumerable<string> allowedColumns)
    3333      : base(allowedColumns) {
    34       Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "Base of log-function", new DoubleValue(Math.E)));
     34      Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "b | Base of log-function", new DoubleValue(Math.E)));
    3535    }
    3636
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/PowerTransformation.cs

    r10805 r10808  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("PowerTransformation", "Represents a power transformation.")]
     10  [Item("PowerTransformation", "f(x) = x ^ exp | Represents a power transformation.")]
    1111  public class PowerTransformation : Transformation<double> {
    1212    protected const string ExponentParameterName = "Exponent";
     
    3131    public PowerTransformation(IEnumerable<string> allowedColumns)
    3232      : base(allowedColumns) {
    33         Parameters.Add(new ValueParameter<DoubleValue>(ExponentParameterName, "Exponent for Exponentation", new DoubleValue(Math.E)));
     33      Parameters.Add(new ValueParameter<DoubleValue>(ExponentParameterName, "exp | Exponent for Exponentation", new DoubleValue(Math.E)));
    3434    }
    3535
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ReciprocalTransformation.cs

    r10784 r10808  
    77using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    88namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    9   [Item("ReciprocalTransformation", "Represents a reciprocal transformation.")]
     9  [Item("ReciprocalTransformation", "f(x) = 1 / x | Represents a reciprocal transformation.")]
    1010  public class ReciprocalTransformation : Transformation<double> {
    1111
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftDataToRangeTransformation.cs

    r10778 r10808  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ShiftDataToRangeTransformation", "Represents a linear Transformation using Parameters defining a target range")]
     10  [Item("ShiftDataToRangeTransformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
    1111  public class ShiftDataToRangeTransformation : LinearTransformation {
    1212    protected const string RangeParameterName = "Range";
     
    3333      MultiplierParameter.Hidden = true;
    3434      AddendParameter.Hidden = true;
    35       Parameters.Add(new ValueParameter<DoubleRange>(RangeParameterName, "Range for the target window of the linear transformation", new DoubleRange(0.0, 1.0)));
     35      Parameters.Add(new ValueParameter<DoubleRange>(RangeParameterName, "start, end | Range for the target window of the linear transformation", new DoubleRange(0.0, 1.0)));
    3636    }
    3737
Note: See TracChangeset for help on using the changeset viewer.