Module: PureGreeks::Math::Normal
- Defined in:
- lib/pure_greeks/math/normal.rb
Class Method Summary collapse
Class Method Details
.cdf(x) ⇒ Object
8 9 10 |
# File 'lib/pure_greeks/math/normal.rb', line 8 def self.cdf(x) Distribution::Normal.cdf(x) end |
.pdf(x) ⇒ Object
12 13 14 |
# File 'lib/pure_greeks/math/normal.rb', line 12 def self.pdf(x) Distribution::Normal.pdf(x) end |