.. highlightlang:: us .. _xyzgetinterpolationtype: XYZGetInterpolationType ======================= .. index:: XYZGetInterpolationType .. us.tag XYZGetInterpolationType NOTREADYGERMAN XYZGet_data :ref:`XYZGetInterpolationType` liefert den Interpolationstyp, der für die Interpolation der beliebig verteilten x/y/z-Daten verwendet wird. .. function:: nType = XYZGetInterpolationType(hData) .. us.return **Returnwert** *nType* ist der Interpolationstyp: Tripel zu Matrix-Interpolationen: .. list-table:: :header-rows: 1 * - 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. .. us.params **Parameter** .. uparam:: hData *hData* ist die Zugriffsnummer (Handle) des Datensatzes, der mit :ref:`XYZCreate` erzeugt wurde. .. us.example **Beispiel** :: XYZSetInterpolationType(hData, LINEAR); .. seealso:: :ref:`uberblick-xyz-datensatze`, :ref:`XYZSetInterpolationType`, :ref:`XYZCreate`, :ref:`XYZUpdate` :sub:`id-1952182`