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/pow-int #1919

Merged
merged 12 commits into from
Mar 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update lib/node_modules/@stdlib/math/base/special/fast/pow-int/README.md
Co-authored-by: Pranav <[email protected]>
Signed-off-by: GUNJ JOSHI <[email protected]>
gunjjoshi and Pranavchiku authored Mar 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit c380280ab6d141f231d924ad19960f21f0736e64
Original file line number Diff line number Diff line change
@@ -216,7 +216,7 @@ int main( void ) {
int i;
for ( i = 0; i < 4; i++ ) {
z = stdlib_base_fast_pow( x[ i ], y[ i ] );
printf( "pow( %lf, %lf ) = %lf\n", x[ i ], y[ i ], z );
printf( "pow( %lf, %d ) = %lf\n", x[ i ], y[ i ], z );
}
}
```