Enum FastCosineTransform.Norm
- java.lang.Object
-
- java.lang.Enum<FastCosineTransform.Norm>
-
- org.apache.commons.math4.transform.FastCosineTransform.Norm
-
- All Implemented Interfaces:
Serializable
,Comparable<FastCosineTransform.Norm>
- Enclosing class:
- FastCosineTransform
public static enum FastCosineTransform.Norm extends Enum<FastCosineTransform.Norm>
Normalization types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ORTHO
Should be passed to the constructor ofFastCosineTransform
to use the orthogonal normalization convention.STD
Should be passed to the constructor ofFastCosineTransform
to use the standard normalization convention.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FastCosineTransform.Norm
valueOf(String name)
Returns the enum constant of this type with the specified name.static FastCosineTransform.Norm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STD
public static final FastCosineTransform.Norm STD
Should be passed to the constructor ofFastCosineTransform
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)],
-
ORTHO
public static final FastCosineTransform.Norm ORTHO
Should be passed to the constructor ofFastCosineTransform
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 FastCosineTransform.Norm[] 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 (FastCosineTransform.Norm c : FastCosineTransform.Norm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FastCosineTransform.Norm 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
-
-