Skip to content

Commit

Permalink
next release (#23)
Browse files Browse the repository at this point in the history
* new methods log, exp, fact
* pow now supports fractional #22
* fmod - deprected, now we can use mod for floats
* powFractional - fix for null scale
* bcmod - completely changes because results where incorrect then expected
* powMod - better support for floats
* more test cases (compared with wolframalpha.com)
  • Loading branch information
krowinski authored Aug 3, 2018
1 parent 0e8e4b6 commit bf0d1d3
Show file tree
Hide file tree
Showing 3 changed files with 361 additions and 148 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ Features
- roundDown
- roundUp
- ceil
- fmod
- fmod (deprected just use mod)
- exp
- log
- fact
- pow (supports fractional)
- mod (supports fractional + scale in php 5.6 <)
- proxy for original functions (http://php.net/manual/en/book.bc.php)
- all functions supports scientific notation
- all functions are static so it can be easy replaced by this lib
Loading

0 comments on commit bf0d1d3

Please sign in to comment.