Enum DctNormalization

java.lang.Object
java.lang.Enum<DctNormalization>
org.hipparchus.transform.DctNormalization
All Implemented Interfaces:
Serializable, Comparable<DctNormalization>, java.lang.constant.Constable

public enum DctNormalization extends Enum<DctNormalization>
This enumeration defines the various types of normalizations that can be applied to discrete cosine transforms (DCT). The exact definition of these normalizations is detailed below.
See Also:
  • Enum Constant Details

    • STANDARD_DCT_I

      public static final DctNormalization STANDARD_DCT_I
      Should be passed to the constructor of FastCosineTransformer to use the standard normalization convention. The standard DCT-I normalization convention is defined as follows
      • forward transform: yn = (1/2) [x0 + (-1)nxN-1] + ∑k=1N-2 xk cos[π nk / (N - 1)],
      • inverse transform: xk = [1 / (N - 1)] [y0 + (-1)kyN-1] + [2 / (N - 1)] ∑n=1N-2 yn cos[π nk / (N - 1)],
      where N is the size of the data sample.
    • ORTHOGONAL_DCT_I

      public static final DctNormalization ORTHOGONAL_DCT_I
      Should be passed to the constructor of FastCosineTransformer to use the orthogonal normalization convention. The orthogonal DCT-I normalization convention is defined as follows
      • forward transform: yn = [2(N - 1)]-1/2 [x0 + (-1)nxN-1] + [2 / (N - 1)]1/2k=1N-2 xk cos[π nk / (N - 1)],
      • inverse transform: xk = [2(N - 1)]-1/2 [y0 + (-1)kyN-1] + [2 / (N - 1)]1/2n=1N-2 yn cos[π nk / (N - 1)],
      which makes the transform orthogonal. N is the size of the data sample.
  • Method Details

    • values

      public static DctNormalization[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DctNormalization valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null