*attributeupdatedoublearray2dmark

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

Syntax

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

Type

HyperMesh Tcl Modify Command

Description

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

Inputs

entity type
The type of entity that owns the attribute.
mark
The number of the mark.
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
2D array of doubles.
rows
The number of rows in the array.
cols
The number of columns in the array.

Example

Update an attribute of type 2D double array to [1,2,3] on materials with IDs 7 and 8.

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