Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ReciprocalTransformation.cs @ 17189

Last change on this file since 17189 was 16565, checked in by gkronber, 6 years ago

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

File size: 1.5 KB
RevLine 
[10781]1
2using System;
3using System.Collections.Generic;
[10821]4using System.Linq;
[10781]5using HeuristicLab.Common;
6using HeuristicLab.Core;
[16565]7using HEAL.Attic;
[11068]8namespace HeuristicLab.Problems.DataAnalysis {
[16565]9  [StorableType("8D242A5A-5EBB-4618-958E-A7EF34151508")]
[10909]10  [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")]
[10781]11  public class ReciprocalTransformation : Transformation<double> {
12
[10932]13    #region properties
14    public override string ShortName {
15      get { return "Inv"; }
16    }
17    #endregion
18
[10781]19    [StorableConstructor]
[16565]20    protected ReciprocalTransformation(StorableConstructorFlag _) : base(_) { }
[11114]21    protected ReciprocalTransformation(ReciprocalTransformation original, Cloner cloner)
[10781]22      : base(original, cloner) {
23    }
24    public ReciprocalTransformation(IEnumerable<string> allowedColumns)
25      : base(allowedColumns) {
26    }
27
28    public override IDeepCloneable Clone(Cloner cloner) {
29      return new ReciprocalTransformation(this, cloner);
30    }
31
32    public override IEnumerable<double> Apply(IEnumerable<double> data) {
[12612]33      return data.Select(d => d > 0 ? 1.0 / d : d);
[10781]34    }
35
36    public override bool Check(IEnumerable<double> data, out string errorMsg) {
37      errorMsg = null;
[10821]38      int errorCounter = data.Count(i => i <= 0.0);
[10781]39      if (errorCounter > 0) {
[10821]40        errorMsg = String.Format("{0} values are zero or below zero. 1/x can not be applied onto these values", errorCounter);
[10781]41        return false;
42      }
43      return true;
44    }
45  }
46}
Note: See TracBrowser for help on using the repository browser.