This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > DataSourcesRaster > ESRI.ArcGIS.DataSourcesRaster > Interfaces > IS > IStatsHistogram4 Interface > IStatsHistogram4.PutCovarAccu Method (ArcObjects .NET 10.5 SDK) |
Put the accumulating or running variables used for covar computation. Do this after having incremented them.
[Visual Basic .NET] Public Sub PutCovarAccu ( _ ByVal iBand As Integer, _ ByVal numValidPixel As Double, _ ByVal covarXY As Double, _ ByVal meanX As Double, _ ByVal meanY As Double _ )
[C#] public void PutCovarAccu ( int iBand, double numValidPixel, double covarXY, double meanX, double meanY );
[C++]
HRESULT PutCovarAccu(
long iBand,
double numValidPixel,
double covarXY,
double meanX,
double meanY
);
[C++]
Parameters iBand [in] iBand is a parameter of type long numValidPixel [in] numValidPixel is a parameter of type double covarXY [in] covarXY is a parameter of type double meanX [in] meanX is a parameter of type double meanY [in] meanY is a parameter of type double