*createentityarray2d
Creates a 2D array of entities for use in a subsequent command.
Syntax
*createentityarray2d rows cols entities
Type
HyperMesh Tcl Modify Command
Description
Creates a 2D array of entities for use in a subsequent command.
Inputs
- rows
 - The number of rows in the array.
 - cols
 - The number of columns in the array.
 - entities
 - The entities to put in the array.
 
Examples
To create a 2D entity array with 2 rows, 3 columns and the entities with IDs (1, 2, 3) and
        (6, 7, 8) in each respective
        row:
    *createentityarray2d 2 3 1 2 3 6 7 8