NumericalStatistics
public struct NumericalStatistics
A simple helper to compute numerical statistic properties (mean and standard deviations) from a given collection.
-
Declaration
Swift
public var mean: Float
-
Declaration
Swift
public var std: Float
-
Declaration
Swift
public init(mean: Float = 0, std: Float = 0)
-
Declaration
Swift
public init<C>(_ array: C) where C : Collection, C.Element == Float