Comments
-
turns out pearl's log() function is mathematically actually natural logarythm ( =ln ) Solution: replace the line SVC.pm: return ( sprintf( "%.3f", 10 * log( $pwr / 1000 ) ) ); with SVC.pm: return ( sprintf( "%.3f", 10 * log( $pwr / 1000 ) / log(10) ) );
Howdy, Stranger!