-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor erf_cody.rs and implement complementary error function
This update refactors erf_cody.rs module, streamlining the number representations for improved readability. The major change is the implementation of the complementary error function, or erfc. This function is a key element in statistical analysis, especially in computing the normal distribution. The implementation follows the algorithm outlined in W.J. Cody's 1969 paper, "Rational Chebyshev Approximations for the Error Function".
- Loading branch information
1 parent
9266682
commit 69d0136
Showing
2 changed files
with
69 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pub(crate) mod erf_cody; | ||
pub mod erf_cody; |