|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DftNormalization> org.apache.commons.math3.transform.DftNormalization
public enum DftNormalization
This enumeration defines the various types of normalizations that can be applied to discrete Fourier transforms (DFT). The exact definition of these normalizations is detailed below.
FastFourierTransformer
Enum Constant Summary | |
---|---|
STANDARD
Should be passed to the constructor of FastFourierTransformer
to use the standard normalization convention. |
|
UNITARY
Should be passed to the constructor of FastFourierTransformer
to use the unitary normalization convention. |
Method Summary | |
---|---|
static DftNormalization |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DftNormalization[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DftNormalization STANDARD
FastFourierTransformer
to use the standard normalization convention. This normalization
convention is defined as follows
public static final DftNormalization UNITARY
FastFourierTransformer
to use the unitary normalization convention. This normalization
convention is defined as follows
Method Detail |
---|
public static DftNormalization[] values()
for (DftNormalization c : DftNormalization.values()) System.out.println(c);
public static DftNormalization valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |