Class: MoreMath::Histogram::Bin

Inherits:
Struct
  • Object
show all
Defined in:
lib/more_math/histogram.rb

Overview

Represents a single bin in a histogram with left boundary, right boundary, and count.

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger (readonly)



27
# File 'lib/more_math/histogram.rb', line 27

Bin = Struct.new(:left, :right, :count)

#leftFloat (readonly)



27
# File 'lib/more_math/histogram.rb', line 27

Bin = Struct.new(:left, :right, :count)

#rightFloat (readonly)



27
# File 'lib/more_math/histogram.rb', line 27

Bin = Struct.new(:left, :right, :count)