[10671] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[10694] | 22 |
|
---|
[10702] | 23 | using System;
|
---|
[10694] | 24 | using System.Collections.Generic;
|
---|
[10671] | 25 | using System.Linq;
|
---|
[10694] | 26 | using HeuristicLab.Common;
|
---|
[10671] | 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.Parameters;
|
---|
[10702] | 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[10770] | 31 |
|
---|
| 32 | namespace HeuristicLab.Problems.DataAnalysis.Transformations {
|
---|
[10909] | 33 | [Item("Linear Transformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")]
|
---|
[10694] | 34 | public class LinearTransformation : Transformation<double> {
|
---|
[10777] | 35 | protected const string MultiplierParameterName = "Multiplier";
|
---|
| 36 | protected const string AddendParameterName = "Addend";
|
---|
[10671] | 37 |
|
---|
| 38 | #region Parameters
|
---|
[10777] | 39 | public IValueParameter<DoubleValue> MultiplierParameter {
|
---|
| 40 | get { return (IValueParameter<DoubleValue>)Parameters[MultiplierParameterName]; }
|
---|
[10671] | 41 | }
|
---|
[10777] | 42 | public IValueParameter<DoubleValue> AddendParameter {
|
---|
| 43 | get { return (IValueParameter<DoubleValue>)Parameters[AddendParameterName]; }
|
---|
[10671] | 44 | }
|
---|
| 45 | #endregion
|
---|
| 46 |
|
---|
[10702] | 47 | #region properties
|
---|
[10777] | 48 | public double Multiplier {
|
---|
| 49 | get { return MultiplierParameter.Value.Value; }
|
---|
[10775] | 50 | protected set {
|
---|
[10777] | 51 | MultiplierParameter.Value.Value = value;
|
---|
[10775] | 52 | }
|
---|
[10671] | 53 | }
|
---|
| 54 |
|
---|
[10777] | 55 | public double Addend {
|
---|
| 56 | get { return AddendParameter.Value.Value; }
|
---|
[10775] | 57 | protected set {
|
---|
[10777] | 58 | AddendParameter.Value.Value = value;
|
---|
[10775] | 59 | }
|
---|
[10671] | 60 | }
|
---|
[10702] | 61 | #endregion
|
---|
[10671] | 62 |
|
---|
[10702] | 63 | [StorableConstructor]
|
---|
| 64 | protected LinearTransformation(bool deserializing) : base(deserializing) { }
|
---|
| 65 | protected LinearTransformation(Transformation<double> original, Cloner cloner)
|
---|
| 66 | : base(original, cloner) {
|
---|
[10671] | 67 | }
|
---|
[10702] | 68 | public LinearTransformation(IEnumerable<string> allowedColumns)
|
---|
| 69 | : base(allowedColumns) {
|
---|
[10808] | 70 | Parameters.Add(new ValueParameter<DoubleValue>(MultiplierParameterName, "k | Multiplier for linear transformation", new DoubleValue(1.0)));
|
---|
| 71 | Parameters.Add(new ValueParameter<DoubleValue>(AddendParameterName, "d | Addend for linear transformation", new DoubleValue(0.0)));
|
---|
[10702] | 72 | }
|
---|
[10671] | 73 |
|
---|
[10694] | 74 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[10702] | 75 | return new LinearTransformation(this, cloner);
|
---|
[10671] | 76 | }
|
---|
| 77 |
|
---|
[10702] | 78 | public override IEnumerable<double> Apply(IEnumerable<double> data) {
|
---|
[10777] | 79 | return data.Select(e => e * Multiplier + Addend);
|
---|
[10671] | 80 | }
|
---|
[10702] | 81 |
|
---|
| 82 | public override bool Check(IEnumerable<double> data, out string errorMsg) {
|
---|
| 83 | errorMsg = null;
|
---|
[10777] | 84 | if (Multiplier == 0.0) {
|
---|
[10821] | 85 | errorMsg = String.Format("Multiplicand is 0, all {0} entries will be set to {1}. Inverse apply will not be possible (division by 0).", data.Count(), Addend);
|
---|
| 86 | return false;
|
---|
[10702] | 87 | }
|
---|
[10821] | 88 | return true;
|
---|
[10702] | 89 | }
|
---|
[10671] | 90 | }
|
---|
| 91 | }
|
---|