Click or drag to resize

Complex32Division(Single, Complex32) Operator

Division operator. Divides a float value by a complex number.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Complex32 operator /(
	float dividend,
	Complex32 divisor
)

Parameters

dividend  Single
The dividend.
divisor  Complex32
The divisor.

Return Value

Complex32
The result of the division.
Remarks
Algorithm based on Smith's algorithm
See Also