Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/CopyColumnTransformation.cs
r13368 r14711 29 29 30 30 namespace HeuristicLab.Problems.DataAnalysis { 31 [Storable Class("33523EF7-0312-40D6-B54E-D1C92B50F522")]31 [StorableType("33523EF7-0312-40D6-B54E-D1C92B50F522")] 32 32 [Item("CopyColumnTransformation", "Represents a transformation which represents a copied Column.")] 33 33 public class CopyColumnTransformation : Transformation { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ExponentialTransformation.cs
r13368 r14711 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [Storable Class("C57F9221-15A5-44E8-8E04-5F06205C4564")]11 [StorableType("C57F9221-15A5-44E8-8E04-5F06205C4564")] 12 12 [Item("Exponential Transformation", "f(x) = b ^ x | Represents a exponential transformation.")] 13 13 public class ExponentialTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/LinearTransformation.cs
r13368 r14711 31 31 32 32 namespace HeuristicLab.Problems.DataAnalysis { 33 [Storable Class("67C4EA60-8AB0-408E-B27E-0BD8326FC7E7")]33 [StorableType("67C4EA60-8AB0-408E-B27E-0BD8326FC7E7")] 34 34 [Item("Linear Transformation", "f(x) = k * x + d | Represents a linear transformation with multiplication and addition.")] 35 35 public class LinearTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/LogarithmicTransformation.cs
r13368 r14711 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [Storable Class("5FB34240-BA4F-4632-BE2C-F93B133530BA")]11 [StorableType("5FB34240-BA4F-4632-BE2C-F93B133530BA")] 12 12 [Item("Logarithmic Transformation", "f(x) = log(x, b) | Represents a logarithmic transformation.")] 13 13 public class LogarithmicTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/PowerTransformation.cs
r13368 r14711 9 9 10 10 namespace HeuristicLab.Problems.DataAnalysis { 11 [Storable Class("3752B0C3-B7DB-4AA8-93D4-5490218B5ECB")]11 [StorableType("3752B0C3-B7DB-4AA8-93D4-5490218B5ECB")] 12 12 [Item("Power Transformation", "f(x) = x ^ exp | Represents a power transformation.")] 13 13 public class PowerTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ReciprocalTransformation.cs
r13368 r14711 7 7 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 8 8 namespace HeuristicLab.Problems.DataAnalysis { 9 [Storable Class("01A9DA53-807E-4326-9B99-23C3C82DE1A6")]9 [StorableType("01A9DA53-807E-4326-9B99-23C3C82DE1A6")] 10 10 [Item("Reciprocal Transformation", "f(x) = 1 / x | Represents a reciprocal transformation.")] 11 11 public class ReciprocalTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftStandardDistributionTransformation.cs
r13368 r14711 8 8 9 9 namespace HeuristicLab.Problems.DataAnalysis { 10 [Storable Class("D257BD5F-CC14-490B-9A89-C6CC2434B83F")]10 [StorableType("D257BD5F-CC14-490B-9A89-C6CC2434B83F")] 11 11 [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")] 12 12 public class ShiftStandardDistributionTransformation : Transformation<double> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/ShiftToRangeTransformation.cs
r13368 r14711 8 8 9 9 namespace HeuristicLab.Problems.DataAnalysis { 10 [Storable Class("CBD2F4E0-5535-43EA-B9ED-49B9BDE957BA")]10 [StorableType("CBD2F4E0-5535-43EA-B9ED-49B9BDE957BA")] 11 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")] 12 12 public class ShiftToRangeTransformation : LinearTransformation { -
branches/PersistenceOverhaul/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Transformations/Transformation.cs
r13368 r14711 57 57 58 58 [Item("Transformation", "Represents the base class for a transformation.")] 59 [Storable Class("C45D37D2-435E-4579-95BC-FD2873FB6FD1")]59 [StorableType("C45D37D2-435E-4579-95BC-FD2873FB6FD1")] 60 60 public abstract class Transformation<T> : Transformation, ITransformation<T> { 61 61
Note: See TracChangeset
for help on using the changeset viewer.