Click or drag to resize

IntervalTDivide Method

Divides two intervals and returns the quotient.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static Interval<T> Divide(
	Interval<T> dividend,
	Interval<T> divisor
)

Parameters

dividend  IntervalT
The dividend.
divisor  IntervalT
The divisor.

Return Value

IntervalT
The quotient.
Exceptions
ExceptionCondition
DivideByZeroExceptionThrown when divisor contains zero.
See Also