*attributeupdateintarray2dmark

Updates an attribute of type 2D int array on a set of entities.

Syntax

*attributeupdateintarray2dmark entity type mark identifier solver status behavior data rows cols

Type

HyperMesh Tcl Modify Command

Description

Updates an attribute of type 2D int array on a set of entities.

Inputs

entity type
The type of entity that owns the attribute.
mark
The number of the mark where the list of IDs resides.
identifier
The identifier of the attribute.
solver
The solver number of the attribute.
status
The status of the attribute.
behavior
The behavior of the attribute.
data
The 2D array of ints.
rows
The number of rows in the array.
cols
The number of columns in the array.

Examples

Update an attribute of type 2D int array to [1,2,3] on materials with ID's 7 and 8.

[4,5,6]
*createmark(materials,1) 7 8
*createintarray2d(2,3) 1,2,3,5,6,7
*attributeupdateintarray2dmark(materials,1,615,2,2,0,1,1)