Module Node.Biquad_filter
Biquad filter nodes.
module Type : sig ... end
Biquad filter type.
type opts
The type for
BiquadFilterOptions
.
val opts : ?channel_count:int -> ?channel_count_mode:Channel_count_mode.t -> ?channel_interpretation:Channel_interpretation.t -> ?type':Type.t -> ?q:float -> ?detune:float -> ?frequency:float -> ?gain:float -> unit -> opts
opts ()
are analyser node options with given parameters.
type t
The type for
BiquadFilter
objects.
val detune : t -> Param.t
detune n
is the frequency detuning ofn
.
val q : t -> Param.t
q n
is the quality factor ofn
.
val get_frequency_response : t -> frequencies:Brr.Tarray.float32 -> mag_response:Brr.Tarray.float32 -> phase_response:Brr.Tarray.float32 -> unit
get_frequency_response n ~frequencies_hz ~mag_response ~phase_response
calculates frequency responses forfrequencies
.