-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat: add math/base/special/expm1f#10657
feat: add math/base/special/expm1f#10657navyansh007 wants to merge 3 commits intostdlib-js:developfrom
math/base/special/expm1f#10657Conversation
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes. report:
- task: lint_filenames status: passed
- task: lint_editorconfig status: passed
- task: lint_markdown status: passed
- task: lint_package_json status: passed
- task: lint_repl_help status: passed
- task: lint_javascript_src status: passed
- task: lint_javascript_cli status: na
- task: lint_javascript_examples status: passed
- task: lint_javascript_tests status: passed
- task: lint_javascript_benchmarks status: passed
- task: lint_python status: na
- task: lint_r status: na
- task: lint_c_src status: passed
- task: lint_c_examples status: passed
- task: lint_c_benchmarks status: passed
- task: lint_c_tests_fixtures status: na
- task: lint_shell status: na
- task: lint_typescript_declarations status: passed
- task: lint_typescript_tests status: passed
- task: lint_license_headers status: passed ---
Progresses #649
Description
What is the purpose of this pull request?
This pull request:
- Implements
@stdlib/math/base/special/expm1f
Related Issues
Does this pull request have any related issues?
This pull request has the following related issues:
Questions
Any questions for reviewers of this pull request?
No.
Other
Any other information relevant to this pull request? This may include screenshots, references, and/or implementation notes.
No.
Checklist
Please ensure the following tasks are completed before submitting this pull request.
- Read, understood, and followed the contributing guidelines.
AI Assistance
When authoring the changes proposed in this PR, did you use any kind of AI assistance?
- Yes
- No
If you answered "yes" above, how did you use AI assistance?
- Code generation (e.g., when writing an implementation or fixing a bug)
- Test/benchmark generation
- Documentation (including examples)
- Research and understanding
Disclosure
If you answered "yes" to using AI assistance, please provide a short disclosure indicating how you used AI assistance. This helps reviewers determine how much scrutiny to apply when reviewing your contribution. Example disclosures: "This PR was written primarily by Claude Code." or "I consulted ChatGPT to understand the codebase, but the proposed changes were fully authored manually by myself.".
The implementation code and the documentation in this PR were primarily written by Claude Code and went through a thorough review by me. The research was done by me, and I wrote the tests and benchmarks.
@stdlib-js/reviewers
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes.
report:
- task: lint_filenames
status: passed
- task: lint_editorconfig
status: passed
- task: lint_markdown
status: passed
- task: lint_package_json
status: passed
- task: lint_repl_help
status: passed
- task: lint_javascript_src
status: passed
- task: lint_javascript_cli
status: na
- task: lint_javascript_examples
status: passed
- task: lint_javascript_tests
status: passed
- task: lint_javascript_benchmarks
status: passed
- task: lint_python
status: na
- task: lint_r
status: na
- task: lint_c_src
status: passed
- task: lint_c_examples
status: passed
- task: lint_c_benchmarks
status: passed
- task: lint_c_tests_fixtures
status: na
- task: lint_shell
status: na
- task: lint_typescript_declarations
status: passed
- task: lint_typescript_tests
status: passed
- task: lint_license_headers
status: passed
---
Coverage Report
The above coverage report was generated for the changes in this PR. |
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes.
report:
- task: lint_filenames
status: passed
- task: lint_editorconfig
status: passed
- task: lint_markdown
status: na
- task: lint_package_json
status: passed
- task: lint_repl_help
status: na
- task: lint_javascript_src
status: na
- task: lint_javascript_cli
status: na
- task: lint_javascript_examples
status: na
- task: lint_javascript_tests
status: na
- task: lint_javascript_benchmarks
status: na
- task: lint_python
status: na
- task: lint_r
status: na
- task: lint_c_src
status: na
- task: lint_c_examples
status: na
- task: lint_c_benchmarks
status: na
- task: lint_c_tests_fixtures
status: na
- task: lint_shell
status: na
- task: lint_typescript_declarations
status: passed
- task: lint_typescript_tests
status: na
- task: lint_license_headers
status: passed
---
@stdlib/math/base/special/expm1fstdlib/math/base/special/expm1f
stdlib/math/base/special/expm1fmath/base/special/expm1f
| ```javascript | ||
| var uniform = require( '@stdlib/random/array/uniform' ); | ||
| var logEachMap = require( '@stdlib/console/log-each-map' ); | ||
| var expm1f = require( '@stdlib/math/base/special/expm1f' ); | ||
|
|
||
| var opts = { | ||
| 'dtype': 'float32' | ||
| }; | ||
| var x = uniform( 100, -5.0, 5.0, opts ); | ||
|
|
||
| logEachMap( 'expm1f(%f) = %f', x, expm1f ); | ||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The format string doesn't match examples/index.js (which uses 'e^%0.4f - 1 = %0.4f'). README and examples must be in sync.
| ```javascript | |
| var uniform = require( '@stdlib/random/array/uniform' ); | |
| var logEachMap = require( '@stdlib/console/log-each-map' ); | |
| var expm1f = require( '@stdlib/math/base/special/expm1f' ); | |
| var opts = { | |
| 'dtype': 'float32' | |
| }; | |
| var x = uniform( 100, -5.0, 5.0, opts ); | |
| logEachMap( 'expm1f(%f) = %f', x, expm1f ); | |
| ``` | |
| ```javascript | |
| var uniform = require( '@stdlib/random/array/uniform' ); | |
| var logEachMap = require( '@stdlib/console/log-each-map' ); | |
| var expm1f = require( '@stdlib/math/base/special/expm1f' ); | |
| var opts = { | |
| 'dtype': 'float32' | |
| }; | |
| var x = uniform( 100, -5.0, 5.0, opts ); | |
| logEachMap( 'e^%0.4f - 1 = %0.4f', x, expm1f ); | |
| ``` |