Skip to content
jino edited this page Jun 21, 2022 · 3 revisions

List of implemented features. * indicates matrix evaluation performed internally.

Unary operation

  • T() : Transpose
  • Block() : Submatrix (1)
  • DeleteRC() : Submatrix(2)
  • Minor() : Minor matrix *
  • Cofactor() : Cofactor matrix *
  • cast_to() : Casting matrix type

Binary operation

  • Matrix addition
  • Matrix subtraction
  • Matrix multiplication (with Matrix, or Scalar) *

Matrix member method (These are not an expression)

  • zero() : Zero matrix
  • identity() : Identity matrix
  • gaussian_elem() : Gaussian elimination
  • det() : Determinant calcluation using gaussian_elem()
  • det2() : Determinant calculation recursively
Clone this wiki locally