com.esri.arcgis.datasourcesraster
Interface IStockFrequencyDistributionHistogram

All Superinterfaces:
Serializable
All Known Implementing Classes:
HistogramSpecification, StockFrequencyDistributionHistogram

public interface IStockFrequencyDistributionHistogram
extends Serializable

Provides access to members that control stock frequency distribution histograms.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 IRasterHistogram getNormalDistribution(int nBins, double mean, double stdDev)
          Returns a histogram containing a specified number of bins describing a normal/gaussian distribution with a specified mean and standard deviation.
 IRasterHistogram getUniformDistribution(int nBins)
          Returns a histogram containing a specified number of bins describing a uniform distribution.
 

Method Detail

getNormalDistribution

IRasterHistogram getNormalDistribution(int nBins,
                                       double mean,
                                       double stdDev)
                                       throws IOException,
                                              AutomationException
Returns a histogram containing a specified number of bins describing a normal/gaussian distribution with a specified mean and standard deviation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
nBins - The nBins (in)
mean - The mean (in)
stdDev - The stdDev (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IRasterHistogram
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getUniformDistribution

IRasterHistogram getUniformDistribution(int nBins)
                                        throws IOException,
                                               AutomationException
Returns a histogram containing a specified number of bins describing a uniform distribution.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
nBins - The nBins (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IRasterHistogram
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.