*SetCurveDataLineLength()

Specifies the length of a line of data points when saved with the Save all curve data to file option.

Syntax

*SetCurveDataLineLength (length)

Application

HyperGraph

Inputs

length
An integer value for the number of data points saved per line of the session file. The default value is 1000.

Context

*BeginDefaults()

Example

*BeginDefaults()
    *BeginPlotDefaults()
	*SetCurveDataLineLength(20)
      *RegisterImportTemplate({ getenv("TEMPLATES_DIR") + "/import/nodout2.tpl" })
	...
    *EndPlotDefaults()
*EndDefaults()

Comments

*SetCurveDataLineLength(40) saves 40 data points per line in a session file. In other words, if there are 400 data points available to write out for data X, the data is divided into 10 lines, each containing 40 data points. This is useful because certain editors cannot properly read lines over a certain length.