XYZGetInterpolationType

XYZGetInterpolationType liefert den Interpolationstyp, der für die Interpolation der beliebig verteilten x/y/z-Daten verwendet wird.

nType = XYZGetInterpolationType(hData)

Returnwert

nType ist der Interpolationstyp:

Tripel zu Matrix-Interpolationen:

Wert

Bedeutung

NONE (0)

Keine Interpolation der Tripel-Daten.

LINEAR (1)

Lineare Interpolation über Triangulation.

NONLINEAR (2)

Nicht lineare (kubische) Interpolation über Triangulation.

THINPLATESPLINE(3)

Thin-Plate-Spline Interpolation.

Parameter

hData

hData ist die Zugriffsnummer (Handle) des Datensatzes, der mit XYZCreate erzeugt wurde.

Beispiel

XYZSetInterpolationType(hData, LINEAR);

id-1952182