Skip to content

Commit

Permalink
add invCDF for lognormal
Browse files Browse the repository at this point in the history
  • Loading branch information
doganhc committed Jun 9, 2023
1 parent 80dee1a commit 7b21036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FSharp.Stats/Distributions/Continuous/LogNormal.fs
Expand Up @@ -70,7 +70,7 @@ type LogNormal =
/// Computes the inverse cumulative distribution function (quantile function).
static member InvCDF mu sigma x =
LogNormal.CheckParam mu sigma
failwithf "InvCDF not implemented yet"
Math.Exp (Normal.InvCDF mu sigma x)

/// Returns the support of the exponential distribution: [0, Positive Infinity).
static member Support mu sigma =
Expand Down

0 comments on commit 7b21036

Please sign in to comment.