This document is archived and information here might be outdated.  Recommended version.


IPolynomialXform.CheckResidualRMS Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > DataSourcesRaster > ESRI.ArcGIS.DataSourcesRaster > Interfaces > IP > IPolynomialXform Interface > IPolynomialXform.CheckResidualRMS Method
ArcGIS Developer Help

IPolynomialXform.CheckResidualRMS Method

Gets the residuals and RMS using checking points.

[Visual Basic .NET]
Public Sub CheckResidualRMS ( _
    ByVal CheckingsSurcePoints As IPointCollection, _
    ByVal CheckingsTargetPoints As IPointCollection, _
    ByVal direction As esriTransformDirection, _
    ByRef pResidual As Object, _
    ByRef rms As Double _
)
[C#]
public void CheckResidualRMS (
    IPointCollection CheckingsSurcePoints,
    IPointCollection CheckingsTargetPoints,
    esriTransformDirection direction,
    ref object pResidual,
    ref double rms
);
[C++]
HRESULT CheckResidualRMS(
  IPointCollection* CheckingsSurcePoints,
  IPointCollection* CheckingsTargetPoints,
  esriTransformDirection direction,
  Variant* pResidual,
  System.Double* rms
);
[C++]
Parameters
CheckingsSurcePoints [in]

CheckingsSurcePoints is a parameter of type IPointCollection* CheckingsTargetPoints [in]
CheckingsTargetPoints is a parameter of type IPointCollection* direction [in]
direction is a parameter of type esriTransformDirection pResidual [out]
pResidual is a parameter of type VARIANT* rms [out]
rms is a parameter of type double*

Product Availability

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

Remarks

Get residual on a set of user specified check points. The residual returned is a variant array of double type.

See Also

IPolynomialXform Interface