Search found 2 matches
- Sat Jan 08, 2011 4:40 pm
- Forum: General Audio Programming
- Topic: Converting Full Scale to Decibel Full Scale
- Replies: 9
- Views: 12302
Re: Converting Full Scale to Decibel Full Scale
We get a lot of spam in many languages all over the forum on new and old threads... That post was probably just one of those bloody spammers... please ignore it (should soon be removed by one of the moderators) Moderator Note: I removed the Russian Spam - and it almost certainly was spam (or a hook...
- Sun Jan 02, 2011 1:41 pm
- Forum: General Audio Programming
- Topic: Converting Full Scale to Decibel Full Scale
- Replies: 9
- Views: 12302
Re: Converting Full Scale to Decibel Full Scale
Assuming the following is correct... Some common (peak) values: 0dB = 1.0 -6 dB = 0.5 -12dB = 0.25 -18dB = 0.125 -24dB = 0.0625 ...then the simplest equations I can think of are... db-to-linear (x) = 0.5^(x/-6) linear-to-db (x) = -6*( log(x) / log(0.5) ) to convert to decibels, you can also use line...