CHistogram:GetBinWidth


The GetBinWidth method returns the actual bin width used by the histogram Calc method. This method is useful after setting the binning strategy with the SetBinCount or SetBinAuto method since, in both cases, the bin width is calculated from other parameters.

Syntax

nWidth = CHistogram:GetBinWidth( )

bullet.gif    nWidth is the width of bins used in the histogram.

Example

The following script retrieves the bin width for use in setting up an x axis for plotting the histogram.

H = new_histogram

-- create a Histogram object

v = gaussdev( 1000000 )

-- create this number of random deviates

y = H:Calc( v )

 

nCount = H:GetBinCount()

-- separate the 3 parameters for clarity

nMin = H:GetMin()+H:GetBinWidth()/2

 

nStep = H:GetBinWidth()

 

x = series( nCount, nMin, nStep )

-- create a series for the histgram x axis

stepline( x, y )

-- plot the histogram using default settings

H:delete()

 

Related Topics

CHistogram Class, SetBinWidth, series


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.