XYZSetDataΒΆ

XYZSetData sets the xyz-coordinates of a dataset.

bool = XYZSetData(hData, rvX, rvY, rvZ)
bool = XYZSetData(hData, rvX, rvY, rvZ, svWOT)

Return Value

bool

Parameters

hData

A handle for a dataset created with XYZCreate.

rvX

rvX is a vector with x-coordinates.

rvY

rvY is a vector with y-coordinates.

rvZ

rvZ is a vector with z-coordinates.

svWOT

svWOT is a string vector that sets the Full Load Line (WOT). Each vector element contains a symbol and can have one of the following values "a", "e", "v", "A", "E", "V", "". The symbols have the following meanings:

Value Meaning
"a" Start of the Full Load Line (WOT) without labels.
"e" End of the Full Load Line (WOT) without labels.
"v" Point belongs to Full Load Line (WOT) and will not be labelled.
"A" Start of the Full Load Line (WOT) with labels.
"E" End of the Full Load Line (WOT) with labels.
"V" Point belongs to Full Load Line (WOT) and will be labelled.
"" (empty string) Point does not belong to Full Load Line (WOT).

History

Version Description
5.0.0 New

id-1531937