matr.dflt

package matr.dflt

Type members

Classlikes

case class DefaultDenseMatrix[R <: Int, C <: Int, T](elements: Array[T])(using x$2: NonNegativeDimensions[R, C])(using vr: ValueOf[R], vc: ValueOf[C]) extends Matrix[R, C, T]
case class DefaultSparseMatrix[R <: Int, C <: Int, T](elements: Map[(Int, Int), T])(using num: Numeric[T])(using x$3: NonNegativeDimensions[R, C])(using vr: ValueOf[R], vc: ValueOf[C]) extends Matrix[R, C, T]