auto_xyz_CreateIsolinesΒΆ

auto_xyz_CreateIsolines creates isolines for a 3D dataset.

bool = auto_xyz_CreateIsolines(hData, z1Delta)
bool = auto_xyz_CreateIsolines(hData, z1Delta, z1Max)
bool = auto_xyz_CreateIsolines(hData, z1Delta, z1Max, z2Delta)
bool = auto_xyz_CreateIsolines(hData, z1Delta, z1Max, z2Delta, z2Max)
bool = auto_xyz_CreateIsolines(hData, z1Delta, z1Max, z2Delta, z2Max, z3Delta)
bool = auto_xyz_CreateIsolines(hData, z1Delta, z1Max, z2Delta, z2Max, z3Delta, z3Max)

Return Value

If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0).

Parameters

hData

The handle of a 3D dataset created with XYZCreate.

z1Delta

z1Delta if the function is called with two parmeters, isolines from the minimum value to the maximul value in steps of z1Delta will be created.

Example

The following example will create the isolines 210 (minimum of a fuel consumtion map is 207), 220, 230, 240, 250, 300, 350 and so on up to 500.

...
hData = auto_LoadDataset("Diagram 1", "rpm", "torque", "fuel");
auto_xyz_CreateIsolines(hData, 10, 250, 50, 500);

id-1933999