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 PaddingType
AbstractFastWavelet. m_PaddingType
the type of padding to use.protected PaddingType
AbstractFFT. m_PaddingType
the type of padding to use.Methods in adams.data.filter that return PaddingType Modifier and Type Method Description PaddingType
AbstractFastWavelet. getPaddingType()
Returns the padding type.PaddingType
AbstractFFT. getPaddingType()
Returns the padding type.Methods in adams.data.filter with parameters of type PaddingType Modifier and Type Method Description void
AbstractFastWavelet. setPaddingType(PaddingType value)
Sets the padding type.void
AbstractFFT. 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 PaddingType
PaddingType. parse(String s)
Parses the given string and returns the associated enum.static PaddingType
PaddingType. valueOf(AbstractOption option, String str)
Returns an enum generated from the string.static PaddingType
PaddingType. 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 PaddingType
FFT. m_PaddingType
the type of padding to use.
-