EjmlVector

abstract class EjmlVector<out T, out M : Matrix>(origin: M) : Buffer<T>

Point implementation based on EJML Matrix.

Author

Iaroslav Postovalov

Parameters

T

the type of elements contained in the buffer.

M

the type of EJML matrix.

Constructors

Link copied to clipboard
fun <out M : Matrix> EjmlVector(origin: M)

Functions

Link copied to clipboard
abstract operator fun get(index: Int): T
Link copied to clipboard
open operator override fun iterator(): Iterator<T>
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open val origin: M

The underlying matrix, must have only one row.

Link copied to clipboard
open override val size: Int

Inheritors

Link copied to clipboard
Link copied to clipboard

Sources

Link copied to clipboard