InverseMatrixFeature

interface InverseMatrixFeature<T : Any> : MatrixFeature

Matrices with this feature can be inverted: inverse = a<sup>-1</sup> where a is the owning matrix.

Parameters

T

the type of matrices' items.

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

inverse
Link copied to clipboard
common
abstract val inverse: Matrix<T>
The inverse matrix of the matrix that owns this feature.