Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftToRangeTransformation.cs @ 14843

Last change on this file since 14843 was 14843, checked in by gkronber, 7 years ago

#2697: applied r14390, r14391, r14393, r14394, r14396 again (resolving conflicts)

File size: 2.3 KB
RevLine 
[10775]1using System.Collections.Generic;
2using System.Linq;
3using HeuristicLab.Common;
4using HeuristicLab.Core;
5using HeuristicLab.Data;
6using HeuristicLab.Parameters;
7using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
8
[11068]9namespace HeuristicLab.Problems.DataAnalysis {
[12612]10  [StorableClass]
[10909]11  [Item("Shift to Range Transformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")]
[10841]12  public class ShiftToRangeTransformation : LinearTransformation {
[10775]13    protected const string RangeParameterName = "Range";
14
15    #region Parameters
16    public IValueParameter<DoubleRange> RangeParameter {
17      get { return (IValueParameter<DoubleRange>)Parameters[RangeParameterName]; }
18    }
19    #endregion
20
21    #region properties
[10932]22    public override string ShortName {
23      get { return "Sft"; }
24    }
[10775]25    public DoubleRange Range {
26      get { return RangeParameter.Value; }
27    }
28    #endregion
29
30    [StorableConstructor]
[10841]31    protected ShiftToRangeTransformation(bool deserializing) : base(deserializing) { }
[11114]32    protected ShiftToRangeTransformation(ShiftToRangeTransformation original, Cloner cloner)
[10775]33      : base(original, cloner) {
34    }
[10841]35    public ShiftToRangeTransformation(IEnumerable<string> allowedColumns)
[10775]36      : base(allowedColumns) {
[10777]37      MultiplierParameter.Hidden = true;
38      AddendParameter.Hidden = true;
[10808]39      Parameters.Add(new ValueParameter<DoubleRange>(RangeParameterName, "start, end | Range for the target window of the linear transformation", new DoubleRange(0.0, 1.0)));
[10775]40    }
41
42    public override IDeepCloneable Clone(Cloner cloner) {
[10841]43      return new ShiftToRangeTransformation(this, cloner);
[10775]44    }
45
46    public override bool Check(IEnumerable<double> data, out string errorMsg) {
47      ConfigureParameters(data);
48      return base.Check(data, out errorMsg);
49    }
50
[14843]51    public override void ConfigureParameters(IEnumerable<double> data) {
[10775]52      double originalRangeStart = data.Min();
53      double originalRangeEnd = data.Max();
54
55      double originalRangeWidth = originalRangeEnd - originalRangeStart;
56      double targetRangeWidth = Range.End - Range.Start;
57
[10777]58      Multiplier = targetRangeWidth / originalRangeWidth;
59      Addend = Range.Start - originalRangeStart * Multiplier;
[10775]60    }
61  }
62}
Note: See TracBrowser for help on using the repository browser.