SquareMatrix
Properties
Link copied to clipboard
The inverse of this matrix if it is invertible.
Link copied to clipboard
true
if this matrix is equal to the Identity Matrix:
Inherited functions
Link copied to clipboard
Creates a new SquareMatrix whose members are the transform of those in this one.
Link copied to clipboard
fun SquareMatrix<Double>.mapIndexed(transform: (col: Int, row: Int, Double) -> Double): SquareMatrix<Double>
fun SquareMatrix<Float>.mapIndexed(transform: (col: Int, row: Int, Float) -> Float): SquareMatrix<Float>
fun SquareMatrix<Long>.mapIndexed(transform: (col: Int, row: Int, Long) -> Long): SquareMatrix<Long>
Like map, but with col, row given for each item during tranformation.
Link copied to clipboard
Matrix multiplication of two Matrixes.
Matrix multiplication of two SquareMatrixes.
Right Scalar multiplication of a SquareMatrix.
Link copied to clipboard
Gives the transposition of a SquareMatrix.