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

linalg(deprecated)

  

blockmatrix

  

create a block matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

blockmatrix(m, n, L)

Parameters

m, n

-

block dimensions of the matrix

L

-

list consisting of m*n elements, each of which is a matrix or vector

Description

• 

Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.

  

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

• 

The call blockmatrix(m, n, [B11,..., B1n,..., Bm1,..., Bmn]) creates an m by n block matrix which is filled in using row major order.

• 

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

Examples

Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.

withlinalg:

Amatrix3,3,i,jabsij

A012101210

(1)

Bmatrix3,3,i,jabsij2

B014101410

(2)

Zmatrix3,3,0

Z000000000

(3)

blockmatrix2,4,A,B,Z,A,B,Z,A,B

012014000012101101000101210410000210014000012014101000101101410000210410

(4)

See Also

LinearAlgebra