OutArrayWithIds()

Print out an array parameter with row ID in the exported file.

Usage

OutArrayWithIds( name, ids, value)

Parameters

name (string)
Parameter name.
ids (tuple of integers)
List of row IDs.
value (array)
The value of array parameter.

Return Value

None

Errors

  • The value must be of type array.
  • The ids must be of type list of integers.

Description

This routine prints out an array parameter with row IDs in the exported file. The parameter name is given by name, its value by value and row IDs by ids. For example,
OutArrayWithIds( "gravity", [1,2], (0.0,-9.81,0.0;))