Uses of Class
adams.data.padding.PaddingType
-
Packages that use PaddingType Package Description adams.data.filter adams.data.padding weka.filters.unsupervised.attribute -
-
Uses of PaddingType in adams.data.filter
Fields in adams.data.filter declared as PaddingType Modifier and Type Field Description protected PaddingTypeAbstractFastWavelet. m_PaddingTypethe type of padding to use.protected PaddingTypeAbstractFFT. m_PaddingTypethe type of padding to use.Methods in adams.data.filter that return PaddingType Modifier and Type Method Description PaddingTypeAbstractFastWavelet. getPaddingType()Returns the padding type.PaddingTypeAbstractFFT. getPaddingType()Returns the padding type.Methods in adams.data.filter with parameters of type PaddingType Modifier and Type Method Description voidAbstractFastWavelet. setPaddingType(PaddingType value)Sets the padding type.voidAbstractFFT. setPaddingType(PaddingType value)Sets the padding type. -
Uses of PaddingType in adams.data.padding
Methods in adams.data.padding that return PaddingType Modifier and Type Method Description PaddingTypePaddingType. parse(String s)Parses the given string and returns the associated enum.static PaddingTypePaddingType. valueOf(AbstractOption option, String str)Returns an enum generated from the string.static PaddingTypePaddingType. valueOf(String name)Returns the enum constant of this type with the specified name.static PaddingType[]PaddingType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in adams.data.padding with parameters of type PaddingType Modifier and Type Method Description static double[]PaddingHelper. pad(double[] data, int numPoints, PaddingType type)Pads the data to the specified number of data points (pads on the right).static double[]PaddingHelper. pad(double[] data, int numPoints, PaddingType type, boolean padLeft)Pads the data to the specified number of data points.static float[]PaddingHelper. pad(float[] data, int numPoints, PaddingType type)Pads the data to the specified number of data points (pads on the right).static float[]PaddingHelper. pad(float[] data, int numPoints, PaddingType type, boolean padLeft)Pads the data to the specified number of data points.static double[]PaddingHelper. padPow2(double[] data, PaddingType type)Pads the data to the next power of 2.static double[]PaddingHelper. padPow2(double[] data, PaddingType type, boolean padLeft)Pads the data to the next power of 2.static float[]PaddingHelper. padPow2(float[] data, PaddingType type)Pads the data to the next power of 2 (pads on the right).static float[]PaddingHelper. padPow2(float[] data, PaddingType type, boolean padLeft)Pads the data to the next power of 2. -
Uses of PaddingType in weka.filters.unsupervised.attribute
Fields in weka.filters.unsupervised.attribute declared as PaddingType Modifier and Type Field Description protected PaddingTypeFFT. m_PaddingTypethe type of padding to use.
-