dsp-0.2.1: Haskell Digital Signal Processing

Portabilityportable
Stabilityexperimental
Maintainerm.p.donadio@ieee.org

DSP.Basic

Contents

Description

Basic functions for manipulating signals

Synopsis

Functions

delay1 :: Num a => [a] -> [a]Source

delay is the unit delay function, eg,

delay1 [ 1, 2, 3 ] == [ 0, 1, 2, 3 ]

delay :: Num a => Int -> [a] -> [a]Source

delay is the n sample delay function, eg,

delay 3 [ 1, 2, 3 ] == [ 0, 0, 0, 1, 2, 3 ]

downsample :: Int -> [a] -> [a]Source

downsample throws away every n'th sample, eg,

downsample 2 [ 1, 2, 3, 4, 5, 6 ] == [ 1, 3, 5 ]

downsampleRec :: Int -> [a] -> [a]Source

upsample :: Num a => Int -> [a] -> [a]Source

upsample inserts n-1 zeros between each sample, eg,

upsample 2 [ 1, 2, 3 ] == [ 1, 0, 2, 0, 3, 0 ]

upsampleRec :: Num a => Int -> [a] -> [a]Source

upsampleAndHold :: Int -> [a] -> [a]Source

upsampleAndHold replicates each sample n times, eg,

upsampleAndHold 3 [ 1, 2, 3 ] == [ 1, 1, 1, 2, 2, 2, 3, 3, 3 ]

interleave :: [a] -> [a] -> [a]Source

merges elements from two lists into one list in an alternating way

interleave [0,1,2,3] [10,11,12,13] == [0,10,1,11,2,12,3,13]

uninterleave :: [a] -> ([a], [a])Source

split a list into two lists in an alternating way

uninterleave [1,2,3,4,5,6] == ([1,3,5],[2,4,6])

It's a special case of Numeric.Random.Spectrum.Pink.split.

pad :: (Ix a, Integral a, Num b) => Array a b -> a -> Array a bSource

pad a sequence with zeros to length n

pad [ 1, 2, 3 ] 6 == [ 1, 2, 3, 0, 0, 0 ]

toMaybe :: Bool -> a -> Maybe aSource

generates a Just if the given condition holds

norm2sqr :: Num a => (a, a) -> aSource

Computes the square of the Euclidean norm of a 2D point

(^!) :: Num a => a -> Int -> aSource

Power with fixed exponent type. This eliminates warnings about using default types.