*createarray
Creates an array of integers for use in a subsequent command.
Syntax
*createarray size integers
Type
HyperMesh Tcl Modify Command
Description
Creates an array of integers for use in a subsequent command.
Inputs
- size
- The size of the array.
- integers
- The integers to put in the array.
Examples
To create an integer array with the values
1-5:
*createarray 5 1 2 3 4 5