Package

breeze.signal

support

Permalink

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

Type Members

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

    Permalink

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

  2. trait CanDesignFilterDecimation[Output] extends AnyRef

    Permalink

  3. trait CanFilter[Input, KernelType, Output] extends AnyRef

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    A relatively optimized median filter, using TreeSet

  7. trait CanFirwin[Output] extends AnyRef

    Permalink

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

  8. trait CanHaarTr[InputType, OutputType] extends AnyRef

    Permalink

    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

    Permalink

    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]

    Permalink

    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

    Permalink

    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]

    Permalink
  13. class IIRKernel1D[T] extends FilterKernel1D[T]

    Permalink

    This immutable class will encapsulate 1D IIR kernels.

    This immutable class will encapsulate 1D IIR kernels. Not implemented yet.

Value Members

  1. object CanConvolve extends SerializableLogging

    Permalink

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

  2. object CanDesignFilterDecimation

    Permalink

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

  3. object CanFilter

    Permalink

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

  4. object CanFilterBPBS

    Permalink
  5. object CanFilterLPHP

    Permalink
  6. object CanFilterMedian

    Permalink
  7. object CanFirwin

    Permalink

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

  8. object CanHaarTr

    Permalink

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

  9. object CanIHaarTr

    Permalink

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

  10. object FIRKernel1D

    Permalink
  11. object JTransformsSupport

    Permalink

    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.

  12. object WindowFunctions

    Permalink

  13. def nextPower(x: Double, base: Int): Double

    Permalink

    Gives the next largest power of base.

    Gives the next largest power of base. nextPower(x, 2) is equivalent to MATLAB nextPow2(x).

  14. def nextPower2(x: Double): Double

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped