Complex.Divide
Divide(Complex, Complex)
Divides a by b.
public static Complex Divide(Complex a, Complex b)
| Parameter | Type | Description |
|---|
| a | Complex | The a complex. |
| b | Complex | The b complex. |
Return Value
The result of division.
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also
Divide(Complex, double)
Divides a by s.
public static Complex Divide(Complex a, double s)
| Parameter | Type | Description |
|---|
| a | Complex | The a complex. |
| s | Double | The s value. |
Return Value
The result of division.
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also
Divide(double, Complex)
Divides a by s.
public static Complex Divide(double s, Complex a)
| Parameter | Type | Description |
|---|
| s | Double | The s value. |
| a | Complex | The a complex. |
Return Value
The result of division.
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also
Divide(Complex, Complex, ref Complex)
Divides a by b.
public static void Divide(Complex a, Complex b, ref Complex result)
| Parameter | Type | Description |
|---|
| a | Complex | The a complex. |
| b | Complex | The b complex. |
| result | Complex& | The result. |
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also
Divide(Complex, double, ref Complex)
Divides a by s.
public static void Divide(Complex a, double s, ref Complex result)
| Parameter | Type | Description |
|---|
| a | Complex | The a complex. |
| s | Double | The s value. |
| result | Complex& | The result. |
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also
Divide(double, Complex, ref Complex)
Divides s by a.
public static void Divide(double s, Complex a, ref Complex result)
| Parameter | Type | Description |
|---|
| s | Double | The s value. |
| a | Complex | The a complex. |
| result | Complex& | The result. |
Exceptions
| exception | condition |
|---|
| DivideByZeroException | Can not divide by zero. |
See Also