Search Results for

    Show / Hide Table of Contents

    Interface CanCreatePartialUniform<TDist>

    Whether the distribution can create another distribution of the same type and with the same support, but partially uniform over said support.

    Namespace: Microsoft.ML.Probabilistic.Distributions
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    [Quality(QualityBand.Experimental)]
    public interface CanCreatePartialUniform<out TDist>
    Type Parameters
    Name Description
    TDist

    The type of the distribution.

    Methods

    CreatePartialUniform()

    Creates a distribution uniform over the support of the current distribution.

    Declaration
    TDist CreatePartialUniform()
    Returns
    Type Description
    TDist

    The created distribution.

    IsPartialUniform()

    Checks whether the distribution is uniform over its support.

    Declaration
    bool IsPartialUniform()
    Returns
    Type Description
    Boolean

    true if the distribution is uniform over its support, false otherwise.

    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.