auto_xy_IntegralΒΆ

The function is obsolete. New scripts should use the XYSetFilterFunctions function.

auto_xy_Integral creates a new dataset with the integral of the given dataset.

hDataNew = auto_xy_Integral(hData_Layer)

Return Value

hDataNew is the handle of the new dataset.

Parameters

hData_Layer

hData_Layer is a vector with two elements. The first element is a handle of a 2D dataset and the second element is a handle of a layer (diagram) to which the new dataset should be added.

Example

hPage = auto_LoadTemplate("tpl_ger", "2 Diagramme");
auto_ImportData(GetRootDirectory() + "samples/vollast.asc");
hData = auto_LoadDataset("Diagramm 1", "N", "PME");
hLayer = PageGetLayerHandle(hPage, "Diagramm 2");
auto_xy_Integral([hData, hLayer]);
auto_ScaleAxes();
auto_UpdatePage();

id-831577