Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/25/20 14:52:32 (4 years ago)
Author:
pfleck
Message:

#3040 Added some symbols for statistical aggregation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs

    r17466 r17554  
    8080    Mean = 53,
    8181    StandardDeviation = 54,
    82     Sum = 55
     82    Sum = 55,
     83    Length = 56,
     84    Min = 57,
     85    Max = 58,
     86    Variance = 59,
     87    Skewness = 60,
     88    Kurtosis = 61,
     89    EuclideanDistance = 62 ,
     90    Covariance = 63,
     91
    8392  }
    8493  public static class OpCodes {
     
    139148    public const byte StandardDeviation = (byte)OpCode.StandardDeviation;
    140149    public const byte Sum = (byte)OpCode.Sum;
     150    public const byte Length = (byte)OpCode.Length;
     151    public const byte Min = (byte)OpCode.Min;
     152    public const byte Max = (byte)OpCode.Max;
     153    public const byte Variance = (byte)OpCode.Variance;
     154    public const byte Skewness = (byte)OpCode.Skewness;
     155    public const byte Kurtosis = (byte)OpCode.Kurtosis;
     156    public const byte EuclideanDistance = (byte)OpCode.EuclideanDistance;
     157    public const byte Covariance = (byte)OpCode.Covariance;
    141158
    142159
     
    197214      { typeof(Mean), OpCodes.Mean },
    198215      { typeof(StandardDeviation), OpCodes.StandardDeviation },
    199       { typeof(Sum), OpCodes.Sum }
    200 
     216      { typeof(Sum), OpCodes.Sum },
     217      { typeof(Length), OpCodes.Length },
     218      { typeof(Min), OpCodes.Min },
     219      { typeof(Max), OpCodes.Max },
     220      { typeof(Variance), OpCodes.Variance },
     221      { typeof(Skewness), OpCodes.Skewness },
     222      { typeof(Kurtosis), OpCodes.Kurtosis },
     223      { typeof(EuclideanDistance), OpCodes.EuclideanDistance },
     224      { typeof(Covariance), OpCodes.Covariance },
    201225    };
    202226
Note: See TracChangeset for help on using the changeset viewer.