Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/14 15:14:16 (10 years ago)
Author:
tsteinre
Message:
  • modified Transformations Names / Parameter Names
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/ShiftStandardDistributionTransformation.cs

    r10841 r10909  
    88
    99namespace HeuristicLab.Problems.DataAnalysis.Transformations {
    10   [Item("ShiftStandardDistributionTransformation.cs", "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")]
     10  [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")]
    1111  public class ShiftStandardDistributionTransformation : Transformation<double> {
    12     protected const string OriginalMeanParameterName = "OriginalMean";
    13     protected const string OriginalStandardDeviationParameterName = "OriginalStandardDeviation";
     12    protected const string OriginalMeanParameterName = "Original Mean";
     13    protected const string OriginalStandardDeviationParameterName = "Original Standard Deviation";
    1414    protected const string MeanParameterName = "Mean";
    15     protected const string StandardDeviationParameterName = "StandardDeviation";
     15    protected const string StandardDeviationParameterName = "Standard Deviation";
    1616
    1717    #region Parameters
Note: See TracChangeset for help on using the changeset viewer.