linalg(deprecated)
minor
compute a minor of a matrix
Calling Sequence
Parameters
Description
Examples
minor(A, r, c)
A
-
matrix
r, c
positive integers
Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[Minor], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The function minor returns the (r,c)th minor of the matrix A. This is the matrix obtained by removing the rth row and the cth column of A.
The command with(linalg,minor) allows the use of the abbreviated form of this command.
with⁡linalg:
A≔matrix⁡3,3,1,5,2,6,3,7,4,8,5
A≔152637485
minor⁡A,2,2
1245
See Also
linalg(deprecated)[delrows]
linalg(deprecated)[row]
linalg(deprecated)[submatrix]
LinearAlgebra
Download Help Document