#include <math.h>

float ampdb(db)
float db;
{
	return(pow(10.,(double)(db/20.)));
}
