public enum DftNormalization extends Enum<DftNormalization>
FastFourierTransformer| Enum Constant and Description | 
|---|
| STANDARDShould be passed to the constructor of  FastFourierTransformerto use the standard normalization convention. | 
| UNITARYShould be passed to the constructor of  FastFourierTransformerto 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 © 2016–2020 Hipparchus.org. All rights reserved.