Interface ICanTruncateLeft<TDomain>
Whether the distribution can be left-truncated.
Namespace: Microsoft.ML.Probabilistic.Distributions
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public interface ICanTruncateLeft<TDomain>
where TDomain : IComparable<TDomain>
Type Parameters
| Name | Description |
|---|---|
| TDomain |
Methods
GetStartPoint()
Gets the start point of the truncated distribution.
Declaration
TDomain GetStartPoint()
Returns
| Type | Description |
|---|---|
| TDomain | The start point. |
TruncateLeft(TDomain)
Truncates the distribution at the given point.
Declaration
void TruncateLeft(TDomain startPoint)
Parameters
| Type | Name | Description |
|---|---|---|
| TDomain | startPoint | All values less than this are guaranteed to have zero probability. |