Package-level declarations

Types

Link copied to clipboard
object _I

An object representing the entire axis.

Link copied to clipboard
interface F64Array

The default methods are naive implementations for anyone wishing to implement their own NDArrays. However, I would recommend using delegation to F64ArrayImpl or one of the constructors in the companion object.

Link copied to clipboard

A 1D specialization type for F64Array.

Link copied to clipboard

A specialization type for F64Array representing an image with 3 or 4 channels.

Link copied to clipboard

A 2D specialization type for F64Array.

Link copied to clipboard
interface Viewer

An indexable object.

Functions

Link copied to clipboard
operator fun Double.div(arr: F64Array): F64Array
Link copied to clipboard
operator fun Double.minus(arr: F64Array): F64Array
Link copied to clipboard
operator fun Double.plus(arr: F64Array): F64Array
Link copied to clipboard
Link copied to clipboard
operator fun Double.times(arr: F64Array): F64Array
Link copied to clipboard
Link copied to clipboard

Converts an F64Array to a FloatArray. Only supported on flat arrays.