Skip to content

SVGraph_LinePlot2()

CapnOdin edited this page Feb 3, 2017 · 4 revisions

Draws a curve extrapolated from a set of points.

SVGraph_LinePlot2(LstX, LstY [, Colour, Width, ScaleAxes])

Parameters

LstX

A list of the x-coordinates to be plotted in pairs with the y-coordinates from LstY.

LstY

A list of the y-coordinates to be plotted in pairs with the x-coordinates from LstX.

Colour

The colour of the curve, supports HTML Color Names or Color Values. e.g. "lightgrey" or "#FF00FF".

Width

The width of the line, as a number followed by an optional Unit e.g. 3 or "5mm".

Note: If the unit is included there should be no space between the number and the unit.

ScaleAxes

A boolean determining whether or not to scale the axes to LstX and LstY.

Remarks

Extremum and edge conservation is done by detecting local maxima, minima and areas in which the function is undefined or outside the x and y-axis, in these areas the resolution is increased by a factor of 10.

Example

Clone this wiki locally