ScalarInterpolator Constructor (InterpolationAlgorithmType, Int32, DateMotionCollectionDouble, IListJulianDate) | 
  
    Namespace: 
   AGI.Foundation.Geometry
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ScalarInterpolator(
	InterpolationAlgorithmType algorithmType,
	int degree,
	DateMotionCollection<double> data,
	IList<JulianDate> segmentBoundaryTimes
)
Public Sub New ( 
	algorithmType As InterpolationAlgorithmType,
	degree As Integer,
	data As DateMotionCollection(Of Double),
	segmentBoundaryTimes As IList(Of JulianDate)
)
public:
ScalarInterpolator(
	InterpolationAlgorithmType algorithmType, 
	int degree, 
	DateMotionCollection<double>^ data, 
	IList<JulianDate>^ segmentBoundaryTimes
)
new : 
        algorithmType : InterpolationAlgorithmType * 
        degree : int * 
        data : DateMotionCollection<float> * 
        segmentBoundaryTimes : IList<JulianDate> -> ScalarInterpolatorParameters
- algorithmType
 - Type: AGI.Foundation.NumericalMethodsInterpolationAlgorithmType
The interpolation algorithm to use to interpolate the scalar. - degree
 - Type: SystemInt32
The degree of interpolation to perform. - data
 - Type: AGI.FoundationDateMotionCollectionDouble
The data over which to interpolate. - segmentBoundaryTimes
 - Type: System.Collections.GenericIListJulianDate
            The boundary times between segments that the interpolator should not interpolate over.
             
See Also