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: implement betaincinv function #6547

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

devesssi
Copy link

@devesssi devesssi commented Apr 4, 2025

Resolves #649

Description

What is the purpose of this pull request?

This pull request:

  • Implements the inverse incomplete beta function (betaincinv) as a native Node.js addon
  • Provides a JavaScript wrapper with input validation and error handling
  • Includes comprehensive test suite, examples, and benchmarks
  • Adds documentation with usage examples and parameter descriptions

The implementation uses the Newton-Raphson method to find the inverse of the incomplete beta function, which is useful in various statistical applications including hypothesis testing and confidence interval calculations.

Related Issues

Does this pull request have any related issues?

This pull request:

Questions

Any questions for reviewers of this pull request?

No.

Other

Any other information relevant to this pull request?
functionadded

Implementation Details:

  • Uses Newton-Raphson method for finding the inverse
  • Implements the incomplete beta function using continued fraction expansion
  • Handles edge cases and invalid inputs
  • Includes proper error handling and input validation

Technical Requirements:

  • Node.js >=14.0.0 <19.0.0
  • Uses node-addon-api for native module binding
  • No breaking changes
    functionadded

Checklist

Please ensure the following tasks are completed before submitting this pull request.

  • Read, understood, and followed the contributing guidelines
  • Added comprehensive test suite
  • Added examples and benchmarks
  • Added documentation with usage examples
  • Implemented proper error handling
  • Added input validation
  • Used consistent code style
  • Added appropriate license headers
  • Added proper type definitions
  • Added proper JSDoc comments

@stdlib-js/reviewers

@stdlib-bot stdlib-bot added Math Issue or pull request specific to math functionality. First-time Contributor A pull request from a contributor who has never previously committed to the project repository. Needs Review A pull request which needs code review. labels Apr 4, 2025
Copy link
Contributor

@stdlib-bot stdlib-bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋 Hi there! 👋

And thank you for opening your first pull request! We will review it shortly. 🏃 💨

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
First-time Contributor A pull request from a contributor who has never previously committed to the project repository. Math Issue or pull request specific to math functionality. Needs Review A pull request which needs code review.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[RFC]: Add C implementations to base special math functions (tracking issue)
2 participants