Divides a scalar value by a complex number.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Complex Divide(
	double s,
	Complex a
)

Parameters

s
Type: System..::.Double
A scalar value.
a
Type: AForge.Math..::.Complex
A Complex instance.

Return Value

Returns new Complex instance containing the result.

Exceptions

ExceptionCondition
System..::.DivideByZeroExceptionCan not divide by zero.

See Also