ClickHouse/dbms/src/Functions/registerFunctionsMath.cpp

32 lines
909 B
C++
Raw Normal View History

2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
namespace DB
{
void registerFunctionsMath(FunctionFactory & factory)
{
registerFunctionE(factory);
registerFunctionPi(factory);
registerFunctionExp(factory);
registerFunctionLog(factory);
registerFunctionExp2(factory);
registerFunctionLog2(factory);
registerFunctionExp10(factory);
registerFunctionLog10(factory);
registerFunctionSqrt(factory);
registerFunctionCbrt(factory);
registerFunctionErf(factory);
registerFunctionErfc(factory);
registerFunctionLGamma(factory);
registerFunctionTGamma(factory);
registerFunctionSin(factory);
registerFunctionCos(factory);
registerFunctionTan(factory);
registerFunctionAsin(factory);
registerFunctionAcos(factory);
registerFunctionAtan(factory);
2019-08-01 00:29:32 +00:00
registerFunctionSigmoid(factory);
registerFunctionTanh(factory);
registerFunctionPow(factory);
}
}