linalg(deprecated)/adjoint - 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)/adjoint

linalg(deprecated)

  

adjoint

  

compute the adjoint of a matrix

  

adj

  

a synonym for adjoint

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

adjoint(A)

adj(A)

Parameters

A

-

square matrix (with all elements assigned)

Description

• 

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

  

- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.

• 

The function adjoint computes the matrix such that the matrix product of A and adjoint(A) is the product of det(A) and the matrix identity. This is done through the computation of minors of A.

• 

The command with(linalg,adjoint) allows the use of the abbreviated form of this command.

Examples

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

withlinalg:

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

A123456789

(1)

adjA

−36−36−126−36−3

(2)

Barray1..2,1..2,1,4,0,2

B1402

(3)

adjointB

2−401

(4)

See Also

linalg(deprecated)[det]

linalg(deprecated)[htranspose]

linalg(deprecated)[minor]

LinearAlgebra