Matrix

object Matrix
Companion
class
class Object
trait Matchable
class Any

Type members

Types

type DimsOK[R <: Int, C <: Int] = R > 0 && C > 0

Validates the specified Matrix dimensions at compile-time.

Validates the specified Matrix dimensions at compile-time.

type IsSquare[R <: Int, C <: Int] = R == C

Checks if the specified Matrix dimensions form a squared Matrix.

Checks if the specified Matrix dimensions form a squared Matrix.

Value members

Concrete methods

def IndexOK(rowIdx: Int, colIdx: Int, rowDim: Int, colDim: Int): Unit

Validates the specified row and column index within the given Matrix dimensions.

Validates the specified row and column index within the given Matrix dimensions.