Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ExponentialTransformation.cs @ 10909

Last change on this file since 10909 was 10909, checked in by tsteinre, 10 years ago
  • modified Transformations Names / Parameter Names
File size: 1.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using HeuristicLab.Common;
4using HeuristicLab.Core;
5using HeuristicLab.Data;
6using HeuristicLab.Parameters;
7using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
8
9namespace HeuristicLab.Problems.DataAnalysis.Transformations {
10  [Item("Exponential Transformation", "f(x) = b ^ x | Represents a exponential transformation.")]
11  public class ExponentialTransformation : Transformation<double> {
12    protected const string BaseParameterName = "Base";
13
14    #region Parameters
15    public IValueParameter<DoubleValue> BaseParameter {
16      get { return (IValueParameter<DoubleValue>)Parameters[BaseParameterName]; }
17    }
18    #endregion
19
20    #region properties
21    public double Base {
22      get { return BaseParameter.Value.Value; }
23    }
24    #endregion
25
26    [StorableConstructor]
27    protected ExponentialTransformation(bool deserializing) : base(deserializing) { }
28    protected ExponentialTransformation(Transformation<double> original, Cloner cloner)
29      : base(original, cloner) {
30    }
31    public ExponentialTransformation(IEnumerable<string> allowedColumns)
32      : base(allowedColumns) {
33      Parameters.Add(new ValueParameter<DoubleValue>(BaseParameterName, "b | Base of exp-function", new DoubleValue(Math.E)));
34    }
35
36    public override IDeepCloneable Clone(Cloner cloner) {
37      return new ExponentialTransformation(this, cloner);
38    }
39
40    public override IEnumerable<double> Apply(IEnumerable<double> data) {
41      foreach (double d in data) {
42        yield return Math.Pow(Base, d);
43      }
44    }
45
46    public override bool Check(IEnumerable<double> data, out string errorMsg) {
47      errorMsg = "";
48      return true;
49    }
50  }
51}
Note: See TracBrowser for help on using the repository browser.