synthesizer-core-0.5.2: Audio signal processing coded in Haskell: Low level part

Safe HaskellNone

Synthesizer.ChunkySize.Cut

Description

Functions for cutting signals with respect to lazy chunky time measures. This is essential for realtime applications.

Documentation

class Read sig => Read sig whereSource

Methods

length :: sig -> TSource

Instances

Read [y] 
Storable y => Read (Vector y) 
Read (T y) 

class (Read sig, Monoid sig) => Transform sig whereSource

Methods

take :: T -> sig -> sigSource

drop :: T -> sig -> sigSource

splitAt :: T -> sig -> (sig, sig)Source

Instances