*EndPlotMacros()

Indicates the end of a plot macros block.

Syntax

*EndPlotMacros()

Application

HyperGraph

Context

*BeginPlotMacros()

Example

*BeginPlotMacros()
   *DefinePlotMacro(macro_batch, curve, low, high, times )
      *Label( "batch general")
      *Parameter(curve, "Curve (time = sec)", CURVE)
      *Parameter(low, "Low cutoff", SCALAR)
      *Parameter(high, "High cutoff", SCALAR)
      *Parameter(times, "Time conv.", SCALAR, 1.0)
      *Set(X, "curve.x")
      *Set(Y, "batch(times*curve.x,curve.y,low,high)")
      *Set(LABEL, curve.label + "_" + low + "_" + high)
   *EndDefine()
*EndPlotMacros()

Comments

Every *BeginPlotMacros() statement requires a closing *EndPlotMacros() statement.