math
math copied to clipboard
The missing Math module for Elixir.
Results
2
math issues
Sort by
recently updated
recently updated
newest added
I wrote operations for sets and topology: - `Set.power_set`: returns a power set of a given set - `Set.intersection`: returns an intersection of given sets, rather than two sets -...
Currently, `Math.Enum.mean/1` requires two passes to calculate the mean of the `Enumerable`. This commit changes the function to require only a single pass by using `Enum.reduce/3` to calculate a running-mean.