Changeset 16640 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations
- Timestamp:
- 02/28/19 17:42:10 (6 years ago)
- Location:
- branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/CopyColumnTransformation.cs
r16628 r16640 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Problems.DataAnalysis { 32 [StorableType(" 3B6159C4-C929-47C6-ABCB-A36B9582ED36")]32 [StorableType("DF78A485-8B71-46A4-8A2C-68642084D201")] 33 33 [Item("CopyColumnTransformation", "Represents a transformation which represents a copied Column.")] 34 34 public class CopyColumnTransformation : Transformation { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ExponentialTransformation.cs
r16628 r16640 6 6 using HeuristicLab.Data; 7 7 using HeuristicLab.Parameters; 8 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;8 using HEAL.Attic; 9 9 using HEAL.Attic; 10 10 11 11 namespace HeuristicLab.Problems.DataAnalysis { 12 [StorableType(" 2DA41FB6-B944-4F84-851B-8EB3DD9EB1F5")]12 [StorableType("AAB32034-FA4A-4D70-937F-EF026C1D508A")] 13 13 [Item("Exponential Transformation", "f(x) = b ^ x | Represents a exponential transformation.")] 14 14 public class ExponentialTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/LinearTransformation.cs
r16628 r16640 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Data; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Problems.DataAnalysis { 34 [StorableType(" E451C88C-A33E-43F7-BCF6-AB54E5733CEE")]34 [StorableType("203E6A27-4430-4A9E-825A-22C1B254F5E8")] 35 35 [Item("Linear Transformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")] 36 36 public class LinearTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/LogarithmicTransformation.cs
r16628 r16640 6 6 using HeuristicLab.Data; 7 7 using HeuristicLab.Parameters; 8 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;8 using HEAL.Attic; 9 9 using HEAL.Attic; 10 10 11 11 namespace HeuristicLab.Problems.DataAnalysis { 12 [StorableType(" AAA306DF-F6F8-4AF2-B98F-5F6CBF1E131D")]12 [StorableType("D3330C77-060A-4F75-A0C5-47AC81C5F2DF")] 13 13 [Item("Logarithmic Transformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")] 14 14 public class LogarithmicTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/PowerTransformation.cs
r16628 r16640 6 6 using HeuristicLab.Data; 7 7 using HeuristicLab.Parameters; 8 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;8 using HEAL.Attic; 9 9 using HEAL.Attic; 10 10 11 11 namespace HeuristicLab.Problems.DataAnalysis { 12 [StorableType(" E0F646B4-57C1-4802-B133-88B27D5B5C95")]12 [StorableType("D5A6860A-AEE5-47BE-A4D2-0107AB0A90E3")] 13 13 [Item("Power Transformation", "f(x) = x ^ exp | Represents a power transformation.")] 14 14 public class PowerTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ReciprocalTransformation.cs
r16628 r16640 5 5 using HeuristicLab.Common; 6 6 using HeuristicLab.Core; 7 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;7 using HEAL.Attic; 8 8 using HEAL.Attic; 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [StorableType(" 047CD1E6-8AB3-4DDD-BC09-A1867F754AB0")]11 [StorableType("8D242A5A-5EBB-4618-958E-A7EF34151508")] 12 12 [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")] 13 13 public class ReciprocalTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftStandardDistributionTransformation.cs
r16628 r16640 5 5 using HeuristicLab.Data; 6 6 using HeuristicLab.Parameters; 7 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;7 using HEAL.Attic; 8 8 using HEAL.Attic; 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [StorableType(" 749355B1-2F87-4F52-886D-F4130E56476D")]11 [StorableType("F0DC4951-64DF-4058-8E87-748D0FA1AA21")] 12 12 [Item("Shift Standard Distribution Transformation", "f(x) = ((x - m_org) / s_org ) * s_tar + m_tar | Represents Transformation to unit standard deviation and additional linear transformation to a target Mean and Standard deviation")] 13 13 public class ShiftStandardDistributionTransformation : Transformation<double> { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftToRangeTransformation.cs
r16628 r16640 5 5 using HeuristicLab.Data; 6 6 using HeuristicLab.Parameters; 7 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;7 using HEAL.Attic; 8 8 using HEAL.Attic; 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [StorableType(" 763232A1-C3B4-4BB3-976A-A4D423511733")]11 [StorableType("4A91E704-927C-4278-AA11-79C16BD8E4F2")] 12 12 [Item("Shift to Range Transformation", "f(x) = k * x + d, start <= f(x) <= end | Represents a linear Transformation using Parameters defining a target range")] 13 13 public class ShiftToRangeTransformation : LinearTransformation { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/Transformation.cs
r16628 r16640 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HEAL.Attic; 30 30 … … 32 32 33 33 [Item("Transformation", "Represents the base class for a transformation.")] 34 [StorableType(" 1EC26D29-A49D-4928-A982-F54641C8186A")]34 [StorableType("46B380CC-6CDE-40FC-9BB4-E3FF82BA35EA")] 35 35 public abstract class Transformation : ParameterizedNamedItem, ITransformation { 36 36 protected const string ColumnParameterName = "Column"; … … 59 59 60 60 [Item("Transformation", "Represents the base class for a transformation.")] 61 [StorableType("F 3B02F56-5133-4A66-A834-11FD63D89358")]61 [StorableType("F244DB89-72EA-4B41-89FA-C2E14F30AD29")] 62 62 public abstract class Transformation<T> : Transformation, ITransformation<T> { 63 63
Note: See TracChangeset
for help on using the changeset viewer.