Click or drag to resize

HistogramToString Method

Returns a formatted string representation of this histogram.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override string ToString()

Return Value

String
A fomatted string.
Remarks
If the bin boundaries are b0, b1, b2,...,bn-1, and the counts for these bins are c1, c2,...,cn, respectively, then this method returns a string with the following format:
C#
Number Smaller:   number smaller
[b0,b1)  :   c1
[b1,b2)  :   c2
[b2,b3)  :   c3
.
.
.
[bn-2,bn-1]: cn
Number larger : number larger
See Also