IndexedHistogramSpace

interface IndexedHistogramSpace<T : Comparable<T>, V : Any> : Space<IndexedHistogram<T, V>>

A space for producing histograms with values in a NDStructure

Functions

add
Link copied to clipboard
common
open override fun add(a: IndexedHistogram<T, V>, b: IndexedHistogram<T, V>): IndexedHistogram<T, V>
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: IndexedHistogram<T, V>, right: IndexedHistogram<T, V>): IndexedHistogram<T, V>
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: IndexedHistogram<T, V>, right: IndexedHistogram<T, V>) -> IndexedHistogram<T, V>
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): IndexedHistogram<T, V>
div
Link copied to clipboard
common
open operator fun IndexedHistogram<T, V>.div(k: Number): IndexedHistogram<T, V>
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
getDomain
Link copied to clipboard
common
abstract fun getDomain(index: IntArray): Domain<T>?
Get a bin domain represented by given index
getIndex
Link copied to clipboard
common
abstract fun getIndex(point: Point<T>): IntArray?
Resolve index of the bin including given point
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
minus
Link copied to clipboard
common
open operator fun IndexedHistogram<T, V>.minus(b: IndexedHistogram<T, V>): IndexedHistogram<T, V>
multiply
Link copied to clipboard
common
open override fun multiply(a: IndexedHistogram<T, V>, k: Number): IndexedHistogram<T, V>
plus
Link copied to clipboard
common
open operator fun IndexedHistogram<T, V>.plus(b: IndexedHistogram<T, V>): IndexedHistogram<T, V>
produce
Link copied to clipboard
common
abstract fun produce(builder: HistogramBuilder<T>.() -> Unit): IndexedHistogram<T, V>
produceBin
Link copied to clipboard
common
abstract fun produceBin(index: IntArray, value: V): Bin<T>
times
Link copied to clipboard
common
open operator fun Number.times(b: IndexedHistogram<T, V>): IndexedHistogram<T, V>
open operator fun IndexedHistogram<T, V>.times(k: Number): IndexedHistogram<T, V>
toString
Link copied to clipboard
common
open fun toString(): String
unaryMinus
Link copied to clipboard
common
open operator fun IndexedHistogram<T, V>.unaryMinus(): IndexedHistogram<T, V>
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: IndexedHistogram<T, V>): IndexedHistogram<T, V>
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: IndexedHistogram<T, V>) -> IndexedHistogram<T, V>
unaryPlus
Link copied to clipboard
common
open operator fun IndexedHistogram<T, V>.unaryPlus(): IndexedHistogram<T, V>

Properties

histogramValueSpace
Link copied to clipboard
common
abstract val histogramValueSpace: NDSpace<V, *>
strides
Link copied to clipboard
common
abstract val strides: Strides
zero
Link copied to clipboard
common
open override val zero: IndexedHistogram<T, V>

Inheritors

RealHistogramSpace
Link copied to clipboard