FnuPlot


Ranges

Module with values for elegant construction of ranges. This module is automatically opened, so you do not need to open it explicitly. This lets you specify ranges using the following notation:

// Specify the upper bound on X axis
RangeX.[ .. 10.0]

// Specify the upper bound on Y axis
RangeY.[ .. 10.0]

// Specify both X and Y axes
Range.[-10.0 .. , 2.0 .. 8.0]

Functions and values

Function or valueDescription
Range
Signature: RangeImplXY

Ranges can be constructed using the slicing syntax. For example:

Range.[-10.0 .. , 2.0 .. 8.0]
RangeX
Signature: RangeImplX

Ranges can be constructed using the slicing syntax. For example:

RangeX.[ .. 10.0]
RangeY
Signature: RangeImplY

Ranges can be constructed using the slicing syntax. For example:

RangeY.[ .. 10.0]
Fork me on GitHub