VectorKategory

interface VectorKategory<N>(source)

Types

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
abstract operator fun ColumnVector<N>.minus(other: ColumnVector<N>): ColumnVector<N>
abstract operator fun Matrix<N>.minus(other: Matrix<N>): Matrix<N>
abstract operator fun RowVector<N>.minus(other: RowVector<N>): RowVector<N>
Link copied to clipboard
abstract operator fun ColumnVector<N>.plus(other: ColumnVector<N>): ColumnVector<N>
abstract operator fun Matrix<N>.plus(other: Matrix<N>): Matrix<N>
abstract operator fun RowVector<N>.plus(other: RowVector<N>): RowVector<N>
Link copied to clipboard
abstract operator fun N.times(other: ColumnVector<N>): ColumnVector<N>
abstract operator fun N.times(other: Matrix<N>): Matrix<N>
abstract operator fun N.times(other: RowVector<N>): RowVector<N>
abstract operator fun ColumnVector<N>.times(other: N): ColumnVector<N>
abstract operator fun Matrix<N>.times(other: N): Matrix<N>
abstract operator fun Matrix<N>.times(other: ColumnVector<N>): ColumnVector<N>
abstract operator fun Matrix<N>.times(other: Matrix<N>): Matrix<N>
abstract operator fun RowVector<N>.times(other: N): RowVector<N>
abstract operator fun RowVector<N>.times(other: ColumnVector<N>): N
abstract operator fun RowVector<N>.times(other: Matrix<N>): RowVector<N>
Link copied to clipboard
abstract operator fun ColumnVector<N>.unaryMinus(): ColumnVector<N>
abstract operator fun Matrix<N>.unaryMinus(): Matrix<N>
abstract operator fun RowVector<N>.unaryMinus(): RowVector<N>