linalg(deprecated)/minor - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/minor

linalg(deprecated)

  

minor

  

compute a minor of a matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

minor(A, r, c)

Parameters

A

-

matrix

r, c

-

positive integers

Description

• 

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.

Examples

Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[Minor], instead.

withlinalg:

Amatrix3,3,1,5,2,6,3,7,4,8,5

A152637485

(1)

minorA,2,2

1245

(2)

See Also

linalg(deprecated)[delrows]

linalg(deprecated)[row]

linalg(deprecated)[submatrix]

LinearAlgebra