Advertisement

how do I convert from linear to logarithmic

Started by February 06, 2002 04:25 AM
1 comment, last by Gamekeeper 23 years ago
How do I convert a linear volume scale 0->64 to the logarithmic dB scale 0->10000(hundredths of a decibel).
Message from above: Damn, my hair is grey!
Message from above:Damn, my hair is grey!
Using the log function. C''s log() function is the natural logarithm, and you want base 2, but it''s easy to convert betwen the two. E.g. you can use

#define logbase2(a) (log(a) / log(2))

and then you just need

hundredths_of_a_decibel = 100 * 10 * logbase2(volume);

[the ''100'' comes from wanting hundredths, while the 10 comes from wanting _deci_bels]

Note that this may not work for a volume of zero: it may crash or produce an infinite result. If you expect 0 volumes you should probably handle them seperately.
John BlackburneProgrammer, The Pitbull Syndicate
Advertisement
Thanks johnb!
Message from above:Damn, my hair is grey!

This topic is closed to new replies.

Advertisement