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

EjmlVector
Link copied to clipboard
fun <out M : Matrix> EjmlVector(origin: M)
the type of elements contained in the buffer.

Functions

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

Properties

origin
Link copied to clipboard
open val origin: M
The underlying matrix, must have only one row.
size
Link copied to clipboard
open override val size: Int

Inheritors

EjmlDoubleVector
Link copied to clipboard
EjmlFloatVector
Link copied to clipboard

Sources

jvm source
Link copied to clipboard