ILNumerics Ultimate VS

ILMathpol2cart Method (InArraySingle, InArraySingle, InArraySingle, OutArraySingle, OutArraySingle)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Transforms polar/ cylindrical coordinates into scalar coordinates.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<float> pol2cart(
	InArray<float> theta,
	InArray<float> radius,
	InArray<float> Z,
	OutArray<float> Y = null,
	OutArray<float> outZ = null
)

Parameters

theta
Type: ILNumericsInArraySingle
Angle values to x axis.
radius
Type: ILNumericsInArraySingle
Radius values from z axis.
Z
Type: ILNumericsInArraySingle
Height coordinates.
Y (Optional)
Type: ILNumericsOutArraySingle
[Optional] Output: If not null on entry the Y components are returned here.
outZ (Optional)
Type: ILNumericsOutArraySingle
[Optional] Output: If not null on entry, the Z components are returned here.

Return Value

Type: RetArraySingle
X component values. Y and Z are returned as output parameter if requested.
Remarks

theta, radius and Z must be of the same size or broadcastable to each other. Output arrays returned are of the same size then the broadcasted size of the input arrays.

outZ corresponds to Z but has been broadcasted to the output size.

[ILNumerics Computing Engine]

See Also

Reference