*metadata_double_array()
Creates double array metadata in HMASCII format.
Syntax
*metadata_double_array (entity_type,entity_id,"name",size,value1,value2,...,valueN)
Type
HyperMesh HMASCII Command
Description
Creates double array metadata in HMASCII format.
Inputs
- entity_type
- An integer indicating the type of entity the metadata is attached to. A value of undef indicates attachment to the database itself.
- entity_id
- The ID of the entity the metadata is attached to. Ignored if entity_type is undef.
- size
- The number of values in the array.
- values
- The double values assigned to the metadata. Each value is separated by a comma. There must be size total values.
Example
To create double array metadata attached to element ID 100, with name "my-doubles" and the values 3.14159, 0.70711 and 0.86603:
*metadata_double_array(2,100,"my-doubles",3,3.14159,0.70711,0.86603)
Errors
Incorrect usage results in an import error.