package support
- Alphabetic
- By Inheritance
- support
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
trait
CanConvolve[Input, KernelType, Output] extends AnyRef
Construction delegate trait for convolving type InputType.
Construction delegate trait for convolving type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use convolve(x: DenseVector).
- trait CanDesignFilterDecimation[Output] extends AnyRef
-
trait
CanFilter[Input, KernelType, Output] extends AnyRef
Construction delegate trait for filtering type InputType.
Construction delegate trait for filtering type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use convolve(x: DenseVector).
-
trait
CanFilterBPBS[Input, Output] extends AnyRef
Construction delegate trait for bandpass/bandstop filtering type InputType.
Construction delegate trait for bandpass/bandstop filtering type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use filterBP(x: DenseVector) or filterBS(x: DenseVector).
-
trait
CanFilterLPHP[Input, Output] extends AnyRef
Construction delegate trait for lowpass/highpass filtering type InputType.
Construction delegate trait for lowpass/highpass filtering type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use filterLP(x: DenseVector) or filterHP(x: DenseVector).
-
trait
CanFilterMedian[Input] extends AnyRef
A relatively optimized median filter, using TreeSet
-
trait
CanFirwin[Output] extends AnyRef
Construction delegate trait for convolving type InputType.
Construction delegate trait for convolving type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use convolve(x: DenseVector).
-
trait
CanHaarTr[InputType, OutputType] extends AnyRef
Construction delegate for getting the FHT of a value of type InputType.
Construction delegate for getting the FHT of a value of type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call this implicit delegate directly.
-
trait
CanIHaarTr[InputType, OutputType] extends AnyRef
Construction delegate for getting the IFHT of a value of type InputType.
Construction delegate for getting the IFHT of a value of type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call this implicit delegate directly.
-
class
FIRKernel1D[T] extends FilterKernel1D[T]
This immutable class encapsulates 1D FIR filter kernels.
This immutable class encapsulates 1D FIR filter kernels. It also internally stores the kernel Fourier transform for multiple applications of fft convolution.
-
abstract
class
FilterKernel[T] extends AnyRef
Portions of the code are translated from scipy (scipy.org) based on provisions of the BSD license.
- abstract class FilterKernel1D[T] extends FilterKernel[T]
-
class
IIRKernel1D[T] extends FilterKernel1D[T]
This immutable class will encapsulate 1D IIR kernels.
This immutable class will encapsulate 1D IIR kernels. Not implemented yet.
Value Members
-
def
nextPower(x: Double, base: Int): Double
Gives the next largest power of base.
Gives the next largest power of base. nextPower(x, 2) is equivalent to MATLAB nextPow2(x).
- def nextPower2(x: Double): Double
-
object
CanConvolve extends SerializableLogging
Construction delegate for convolving type InputType.
Construction delegate for convolving type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use convolve(x: DenseVector).
-
object
CanDesignFilterDecimation
Construction delegate for decimation filter design.
Construction delegate for decimation filter design. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use firwin(x: DenseVector).
-
object
CanFilter
Construction delegate for filtering type InputType.
Construction delegate for filtering type InputType. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use convolve(x: DenseVector).
- object CanFilterBPBS
- object CanFilterLPHP
- object CanFilterMedian
-
object
CanFirwin
Construction delegate for firwin filter design.
Construction delegate for firwin filter design. Implementation details (especially option arguments) may be added in the future, so it is recommended not to call these implicit delegates directly. Instead, use firwin(x: DenseVector).
-
object
CanHaarTr
Construction delegate for getting the FHT of a value of type InputType.
-
object
CanIHaarTr
Construction delegate for getting the inverse FHT of a value of type InputType.
- object FIRKernel1D
-
object
JTransformsSupport
This class encapsulates convenience methods to use the JTransforms package.
This class encapsulates convenience methods to use the JTransforms package.
Created with IntelliJ IDEA. User: takagaki Date: 25.06.13 Time: 21:02 To change this template use File | Settings | File Templates.
- object WindowFunctions