Serializable, Comparable<DstNormalization>public enum DstNormalization extends Enum<DstNormalization>
FastSineTransformer| Enum Constant | Description |
|---|---|
ORTHOGONAL_DST_I |
Should be passed to the constructor of
FastSineTransformer to
use the orthogonal normalization convention. |
STANDARD_DST_I |
Should be passed to the constructor of
FastSineTransformer to
use the standard normalization convention. |
| Modifier and Type | Method | Description |
|---|---|---|
static DstNormalization |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static DstNormalization[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DstNormalization STANDARD_DST_I
FastSineTransformer to
use the standard normalization convention. The standard DST-I
normalization convention is defined as follows
public static final DstNormalization ORTHOGONAL_DST_I
FastSineTransformer to
use the orthogonal normalization convention. The orthogonal
DCT-I normalization convention is defined as follows
public static DstNormalization[] values()
for (DstNormalization c : DstNormalization.values()) System.out.println(c);
public static DstNormalization 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–2018 Hipparchus.org. All rights reserved.