3.7.5.102.34 wks.col.xinit

Syntax

wks.col.xinit

Type

numeric

Access

Read/write

Description

Internal X Initial value for column. The XINIT, XINC and XUNITS appear in the Sampling Interval row header if displayed.

Examples

This example creates an internal X dataset for a Y column and plots the Y against this X.
newbook;
col(2) = uniform(10); // Fill Y column with random numbers
wks.col2.xinit = 600; // First X value will be 600
wks.col2.xinc = 10; // Subsequent X spacing of 10
wks.col2.xunits$ = nm;
wks.col2.xname$ = Wavelength;
plotxy iy:=(?,2); // Plot column 2 as Y using its internal X dataset as X

See also

wks.col.evenx, wks.col.xinc, wks.col.xuints$, wks.col.xname$