# Copyright (C) 2013-2016 all contributors # License: GPL-3.0+ # frozen_string_literal: true require_relative '../dtas' # in case we need to convert DB values to a linear scale module DTAS::Util # :nodoc: 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