kumulant

SparseHistogramResult

@Serializable
@SerialName(value = "SparseHistogramResult")
data class SparseHistogramResult(val lowerBounds: DoubleArray, val upperBounds: DoubleArray, val weights: DoubleArray) : Result(source)

Histogram as parallel [lowerBounds, upperBounds) bucket arrays with weights.

Constructors

SparseHistogramResult

constructor(lowerBounds: DoubleArray, upperBounds: DoubleArray, weights: DoubleArray)(source)

Properties

lowerBounds

Inclusive lower bound of each bucket; parallel to upperBounds and weights.

upperBounds

Exclusive upper bound of each bucket; parallel to lowerBounds and weights.

weights

Observed weight per bucket; parallel to lowerBounds / upperBounds.