package mm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Operations on samples.

type t = float

A sample.

val clip : t -> t

Clip a sample (ie ensure that it is between -1. and 1..

val fir : float array -> t -> t

An IIR filter with given b coefficients.

val iir : float array -> float array -> t -> t

An IIR filter with given a and b coefficients.