Packages

package support

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. support
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait CanConvolve[Input, KernelType, Output] extends AnyRef
  2. trait CanDesignFilterDecimation[Output] extends AnyRef

  3. 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).

  4. 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).

  5. 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).

  6. trait CanFilterMedian[Input] extends AnyRef
  7. trait CanFirwin[Output] extends AnyRef
  8. 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.

  9. 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.

  10. 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.

  11. abstract class FilterKernel[T] extends AnyRef

    Portions of the code are translated from scipy (scipy.org) based on provisions of the BSD license.

  12. abstract class FilterKernel1D[T] extends FilterKernel[T]
  13. 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

  1. 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).

  2. def nextPower2(x: Double): Double
  3. object CanConvolve extends SerializableLogging
  4. 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).

  5. 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).

  6. object CanFilterBPBS
  7. object CanFilterLPHP
  8. object CanFilterMedian
  9. object CanFirwin
  10. object CanHaarTr

    Construction delegate for getting the FHT of a value of type InputType.

  11. object CanIHaarTr

    Construction delegate for getting the inverse FHT of a value of type InputType.

  12. object FIRKernel1D
  13. 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.

  14. object WindowFunctions

Inherited from AnyRef

Inherited from Any

Ungrouped