HistogramND

class HistogramND<T : Comparable<T>, D : Domain<T>, V : Any>(val group: HistogramGroupND<T, D, V>, values: StructureND<V>) : Histogram<T, V, DomainBin<T, D, V>> (source)

Parameters

T

the type of the argument space

V

the type of bin value

Constructors

Link copied to clipboard
constructor(group: HistogramGroupND<T, D, V>, values: StructureND<V>)

Functions

Link copied to clipboard
open operator override fun get(point: Point<T>): DomainBin<T, D, V>?

Find existing bin, corresponding to given coordinates

Properties

Link copied to clipboard
open override val bins: Iterable<DomainBin<T, D, V>>
Link copied to clipboard
open override val dimension: Int

Dimension of the histogram

Link copied to clipboard