IDivisionOperations<T, TClosure>.Divide Method

Divides a value by another.

Definition

Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
TClosure Divide(
	T a,
	T b
)

Parameters

a  T
The dividend.
b  T
The divisor.

Return Value

TClosure
a divided by b.

Remarks

Unlike integer division, this method is 'exact' in the sense that it is the inverse operation of multiplication.

See Also