Show / Hide Table of Contents

    Struct BenchmarkStat

    Represents aggregate statics for a benchmark across multiple runs

    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: NBench.Reporting
    Assembly: NBench.dll
    Syntax
    public struct BenchmarkStat

    Constructors

    BenchmarkStat(IEnumerable<Double>)

    Declaration
    public BenchmarkStat(IEnumerable<double> raw)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<System.Double> raw

    BenchmarkStat(IEnumerable<Int64>)

    Declaration
    public BenchmarkStat(IEnumerable<long> values)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<System.Int64> values

    Fields

    SafeValues

    Declaration
    public static readonly double[] SafeValues
    Field Value
    Type Description
    System.Double[]

    Properties

    Average

    Declaration
    public double Average { get; }
    Property Value
    Type Description
    System.Double

    Max

    Declaration
    public double Max { get; }
    Property Value
    Type Description
    System.Double

    Min

    Declaration
    public double Min { get; }
    Property Value
    Type Description
    System.Double

    StandardDeviation

    Declaration
    public double StandardDeviation { get; }
    Property Value
    Type Description
    System.Double

    StandardError

    Declaration
    public double StandardError { get; }
    Property Value
    Type Description
    System.Double
    Back to top Copyright © 2015-2020 Petabridge™, LLC