Package space.kscience.kmath.distributions
Types
Link copied to clipboard
A distribution of typed objects.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class FactorizedDistribution<T>(distributions: Collection<NamedDistribution<T>>) : NamedDistribution<T>
Content copied to clipboard
A multivariate distribution that has independent distributions for separate axis.
Link copied to clipboard
A multivariate distribution that takes a map of parameters.
Link copied to clipboard
class NamedDistributionWrapper<T : Any>(name: String, distribution: Distribution<T>) : NamedDistribution<T>
Content copied to clipboard
Link copied to clipboard
class NormalDistribution(sampler: GaussianSampler) : Distribution1D<Double>
Content copied to clipboard
Implements Distribution1D for the normal (gaussian) distribution.
Functions
Link copied to clipboard
fun <T : Comparable<T>> Distribution1D<T>.integral(from: T, to: T): Double
Content copied to clipboard
Compute probability integral in an interval
Link copied to clipboard
fun NormalDistribution(mean: Double, standardDeviation: Double, normalized: NormalizedGaussianSampler = ZigguratNormalizedGaussianSampler): NormalDistribution
Content copied to clipboard