mpower - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


MTM

  

mpower

  

matrix power

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

mpower(A,x)

mpower(x,A)

Parameters

A

-

square matrix or array

x

-

scalar

Description

• 

The mpower(A,x) command returns the matrix power Ax.

• 

The mpower(x,A) command returns the power xA.

Examples

withMTM:

AMatrix1,2,3,4:

x3:

mpowerA,x

375481118

(1)

BMatrix1,2,2,1:

x3:

mpowerx,B

413403403413

(2)

This is the same as:

LinearAlgebra:-MatrixExponentiallnxB

413403403413

(3)

See Also

LinearAlgebra:-MatrixExponential

MTM[power]