Package org.hipparchus.transform
Enum DctNormalization
- java.lang.Object
-
- java.lang.Enum<DctNormalization>
-
- org.hipparchus.transform.DctNormalization
-
- All Implemented Interfaces:
Serializable
,Comparable<DctNormalization>
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:
FastCosineTransformer
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ORTHOGONAL_DCT_I
Should be passed to the constructor ofFastCosineTransformer
to use the orthogonal normalization convention.STANDARD_DCT_I
Should be passed to the constructor ofFastCosineTransformer
to use the standard normalization convention.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DctNormalization
valueOf(String name)
Returns the enum constant of this type with the specified name.static DctNormalization[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD_DCT_I
public static final DctNormalization STANDARD_DCT_I
Should be passed to the constructor ofFastCosineTransformer
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)],
-
ORTHOGONAL_DCT_I
public static final DctNormalization ORTHOGONAL_DCT_I
Should be passed to the constructor ofFastCosineTransformer
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/2 ∑k=1N-2 xk cos[π nk / (N - 1)],
- inverse transform: xk = [2(N - 1)]-1/2 [y0 + (-1)kyN-1] + [2 / (N - 1)]1/2 ∑n=1N-2 yn cos[π nk / (N - 1)],
-
-
Method Detail
-
values
public static DctNormalization[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DctNormalization c : DctNormalization.values()) System.out.println(c);
- 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 nameNullPointerException
- if the argument is null
-
-