XYZColumnarData

@UnstableKMathAPI
interface XYZColumnarData<out T, out X : T, out Y : T, out Z : T> : XYColumnarData<T, X, Y>

A ColumnarData with guaranteed x, y and z columns designated by corresponding symbols. Inherits XYColumnarData.

Functions

Link copied to clipboard
@UnstableKMathAPI
fun <T> ColumnarData<T>.asXYData(xSymbol: Symbol, ySymbol: Symbol): XYColumnarData<T, T, T>

Represent a ColumnarData as an XYColumnarData. The presence or respective columns is checked on creation.

Link copied to clipboard
open operator override fun get(symbol: Symbol): Buffer<T>?

Provide a column by symbol or null if column with given symbol is not defined

Properties

Link copied to clipboard
@UnstableKMathAPI
val ColumnarData<*>.indices: IntRange
Link copied to clipboard
abstract val size: Int
Link copied to clipboard
abstract val x: Buffer<X>

The buffer of X values

Link copied to clipboard
abstract val y: Buffer<Y>

The buffer of Y values.

Link copied to clipboard
abstract val z: Buffer<Z>