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

Online Help

All Products    Maple    MapleSim


MTM

  

horzcat

  

horizontal concatenation of arrays

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

horzcat(M1,M2,..., Mn)

Parameters

M1, M2, ..., Mn

-

array

Description

• 

The horzcat(M1,M2) function creates a new array with the columns of M2 to the right of the columns of M1.

• 

All input arrays must have the same number of rows and dimensions.

Examples

withMTM:

M1Matrix2,3,fill=1:

M2Matrix2,2,fill=2:

horzcatM1,M2

1112211122

(1)

See Also

ArrayTools[Concatenate]

MTM[vertcat]