Skip to content

Minors

Minors(matrix)

returns the minors of the matrix.

Minors(matrix, n)

returns the minors of the matrix with the determinant of the minors of size n x n

Minors(matrix, n, function)

returns the minors of the matrix with the function applied on the minors of size n x n

See:

Examples

>> Minors({{1,4,7},{3,0,5},{-1,9,11}})
{{-12,-16,20},{13,18,-19},{27,38,-45}}

Implementation status

  • ✅ - full supported

Github