public enum DftNormalization extends Enum<DftNormalization>
FastFourierTransformer
Enum Constant and Description |
---|
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. |
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2020 CNES. All rights reserved.