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

Online Help

All Products    Maple    MapleSim


MTM

  

vertcat

  

vertical concatenation of Arrays

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

vertcat(M1,M2,...)

Parameters

Mi

-

Array

Description

• 

The vertcat(M1,M2) function creates a new array with the rows of M1 on top of the rows of M2.

• 

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

Examples

withMTM:

M1Matrix3,2,fill=1:

M2Matrix2,2,fill=2:

vertcatM1,M2

1111112222

(1)

See Also

ArrayTools[Concatenate]

MTM[horzcat]