ILNumerics Ultimate VS

ILMathpol2cart Method (InArrayDouble, InArrayDouble, InArrayDouble, OutArrayDouble, OutArrayDouble)

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<double> pol2cart(
	InArray<double> theta,
	InArray<double> radius,
	InArray<double> Z,
	OutArray<double> Y = null,
	OutArray<double> outZ = null
)

Parameters

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

Return Value

Type: RetArrayDouble
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