Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
16e87df7
Commit
16e87df7
authored
1 week ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
fbase + erfcx
parent
360913bd
No related branches found
No related tags found
No related merge requests found
Pipeline
#202585
passed
19 hours ago
Stage: build
Changes
1
Pipelines
8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pub/lib/fbase.cpp
+6
-0
6 additions, 0 deletions
pub/lib/fbase.cpp
with
6 additions
and
0 deletions
pub/lib/fbase.cpp
+
6
−
0
View file @
16e87df7
...
...
@@ -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"
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment