*plots()
Starts a plot output block. The plots in the HyperMesh database are output according to the user-defined format in this block.
Syntax
*plots ()
Type
HyperMesh Template Command
Example
To output the IDs of the curves in a plot, the following commands should be used:
*counterset(counter1,0)
  *loop([counter1 != numberofcurves])
    *pointerset(pointer1,curves,counter1)
    *field(integer,pointer1.pointervalue,0)
    *counterinc(counter1)
*endloop()Requires an *output() at the end of the block.