jordan - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


MTM

  

jordan

  

compute the Jordan form of a matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

J = jordan(A)

[V,J] = jordan(A)

Parameters

A

-

square matrix

Description

• 

The function jordan(A) computes the Jordan form of a matrix A.

• 

When the function is called using the form J = jordan(A), the returned value of J is the Jordan form of the matrix A.

• 

When the function is called using the form [V,J] = jordan(A), the returned value of J is the Jordan form of the matrix A, and the returned value of V is the transformation matrix corresponding to this Jordan form.

Examples

> 

with⁡MTM:

> 

A≔Matrix⁡1,2,1,2,4,2,2,8,1

A≔121242281

(1)
> 

J≔jordan⁡A

J≔00003−220003+22

(2)
> 

V,J≔jordan⁡A

V,J≔12⁢2222+3⁢22⁢−3+22−10+222⁢22+3⁢22⁢−3+224+222⁢22+3⁢22−2⁢2222+3⁢22⁢−3+22−10+2222+3⁢22⁢−3+224+2222+3⁢22−8⁢2222+3⁢22⁢−3+22−1+4⁢2222+3⁢22⁢−3+227+2222+3⁢22,00003−220003+22

(3)

See Also

LinearAlgebra[JordanForm]

MTM[eig]

MTM[poly]

MTM[svd]