Matrix

interface Matrix<out T : Number>

An NxM Matrix.

Inheritors

Properties

Link copied to clipboard
abstract val numColumns: Int

The number of columns in the matrix.

Link copied to clipboard
abstract val numRows: Int

The number of rows in the matrix.

Functions

Link copied to clipboard
abstract operator fun get(row: Int, col: Int): T

A value within the Matrix at row, col.

Inherited functions

Link copied to clipboard
Link copied to clipboard
operator fun Matrix<Double>.plus(other: Matrix<Double>): Matrix<Double>
Link copied to clipboard