Skip to content
Snippets Groups Projects
Commit 16e87df7 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

fbase + erfcx

parent 360913bd
No related branches found
No related tags found
No related merge requests found
Pipeline #202585 passed
......@@ -353,6 +353,10 @@ double func_erfi(double v)
{
return erfi(v);
}
double func_erfcx(double v)
{
return erfcx(v);
}
double func_dawson(double v)
{
......@@ -1043,6 +1047,8 @@ void fbase_initialize()
G->register_fct_d_d(m, func_erfc);
m = {"erfi", 1, "(x): imaginary error function of x"};
G->register_fct_d_d(m, func_erfi);
m = {"erfcx", 1, "(x): error-compensated complementary error function of x"};
G->register_fct_d_d(m, func_erfcx);
m = {"dawson", 1, "(x): Dawson function of x"};
G->register_fct_d_d(m, func_dawson);
m = {"sinc", 1, "(x): sinus cardinalis, sin(x)/x"};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment