Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add C implementation for math/base/special/fast/atanh #1909

Merged
merged 10 commits into from
Mar 17, 2024
Prev Previous commit
Next Next commit
Update README.md
Signed-off-by: Rejoan Sardar <[email protected]>
Rejoan-Sardar authored Mar 16, 2024
commit 4d3bd3799682ec9a78c14798be14bd0231e1d6e6
Original file line number Diff line number Diff line change
@@ -179,7 +179,7 @@ int main( void ) {
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_fast_atanh( x[ i ] );
printf( "atanh(%lf) = %lf\n", x[ i ], v );
}
}
}
```