music-dynamics-1.9.0: Abstract representation of musical dynamics.

Copyright(c) Hans Hoglund 2012
LicenseBSD-style
Maintainerhans@hanshoglund.se
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Music.Dynamics.Absolute

Description

Absolute representation of loudness, or dynamics.

The canonical loudness representation is Amplitude. For conversion, see HasAmplitude.

Synopsis

Documentation

data Decibel Source

A logarithmic representation of amplitude such that

x * 10 = amplitude (decibel x + 10)

data Bel Source

A logarithmic representation of amplitude such that

x * 10 = amplitude (bel x + 1)

bel :: HasAmplitude a => a -> Bel Source