XYGetYRangeΒΆ

XYGetYRange returns the smallest and largest y-coordinate of the data points.

rvMinMax = XYGetYRange(hData)
rvMinMax = XYGetYRange(hData, bExt)

Return Value

rvMinMax is a vector with 2 elements:

Value

Meaning

rvMinMax[1]

smallest y-coordinate

rvMinMax[2]

largest y-coordinate

Parameters

hData

The handle of a dataset created with XYCreate or TYCreate.

bExt

This parameter specifies if the function will access the original data or the filtered data.

Value

Description

-1

If filtered data is available it will access filtered data, otherwise it will access original data. Default value is -1.

0

Access original data.

1

Access filtered data.

id-764345