Changeset 10808
- Timestamp:
- 05/07/14 11:35:06 (10 years ago)
- 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 8 8 9 9 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 10 [Item("ExponentialTransformation", " Represents a exponential transformation.")]10 [Item("ExponentialTransformation", "f(x) = b ^ x | Represents a exponential transformation.")] 11 11 public class ExponentialTransformation : Transformation<double> { 12 12 protected const string BaseParameterName = "Base"; … … 31 31 public ExponentialTransformation(IEnumerable<string> allowedColumns) 32 32 : 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))); 34 34 } 35 35 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LinearTransformation.cs
r10778 r10808 32 32 33 33 namespace 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.")] 35 35 public class LinearTransformation : Transformation<double> { 36 36 protected const string MultiplierParameterName = "Multiplier"; … … 69 69 public LinearTransformation(IEnumerable<string> allowedColumns) 70 70 : 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))); 73 73 } 74 74 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LogarithmicTransformation.cs
r10779 r10808 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 11 [Item("LogarithmicTransformation", " Represents a logarithmic transformation.")]11 [Item("LogarithmicTransformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")] 12 12 public class LogarithmicTransformation : Transformation<double> { 13 13 protected const string BaseParameterName = "Base"; … … 32 32 public LogarithmicTransformation(IEnumerable<string> allowedColumns) 33 33 : 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))); 35 35 } 36 36 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/PowerTransformation.cs
r10805 r10808 8 8 9 9 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 10 [Item("PowerTransformation", " Represents a power transformation.")]10 [Item("PowerTransformation", "f(x) = x ^ exp | Represents a power transformation.")] 11 11 public class PowerTransformation : Transformation<double> { 12 12 protected const string ExponentParameterName = "Exponent"; … … 31 31 public PowerTransformation(IEnumerable<string> allowedColumns) 32 32 : 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))); 34 34 } 35 35 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ReciprocalTransformation.cs
r10784 r10808 7 7 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 8 8 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 9 [Item("ReciprocalTransformation", " Represents a reciprocal transformation.")]9 [Item("ReciprocalTransformation", "f(x) = 1 / x | Represents a reciprocal transformation.")] 10 10 public class ReciprocalTransformation : Transformation<double> { 11 11 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftDataToRangeTransformation.cs
r10778 r10808 8 8 9 9 namespace 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")] 11 11 public class ShiftDataToRangeTransformation : LinearTransformation { 12 12 protected const string RangeParameterName = "Range"; … … 33 33 MultiplierParameter.Hidden = true; 34 34 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))); 36 36 } 37 37
Note: See TracChangeset
for help on using the changeset viewer.