blob: 03c7ded7a837685dc0c9c8b4f2ef44f471c3ac7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- encoding: binary -*-
# :stopdoc:
# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net>
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
require_relative '../dtas'
# in case we need to convert DB values to a linear scale
module DTAS::Util
def db_to_linear(val)
Math.exp(val * Math.log(10) * 0.05)
end
def linear_to_db(val)
Math.log10(val) * 20
end
end
|