/// <summary>Initializes a new instance of the <see cref="MklCurveInterpolationLogLinear" /> class.
 /// </summary>
 internal MklCurveInterpolationLogLinear()
     : base(MklCurveResource.AnnotationInterpolationLogLinear)
 {
     m_DataFitting = new MklDataFitting(MklCurveInterpolationSpline.SplineOrder.DF_PP_LINEAR, MklCurveInterpolationSpline.SplineType.DF_PP_DEFAULT, MklCurveInterpolationSpline.SplineBoundaryCondition.DF_NO_BC);
     m_Name        = new IdentifierString("MKL LogLinear");
     m_LongName    = new IdentifierString(MklCurveResource.LongNameInterpolationLogLinear);
 }
Example #2
0
 /// <summary>Initializes a new instance of the <see cref="Interpolator"/> class.
 /// </summary>
 /// <param name="interpolationFactory">The <see cref="MklDataFitting"/> object that serves as factory for the current object.</param>
 internal Interpolator(MklDataFitting interpolationFactory)
 {
     m_Task           = IntPtr.Zero;
     m_GridPointCount = 0;
     m_MklDataFitting = interpolationFactory;
 }
 /// <summary>Initializes a new instance of the <see cref="LogMklDataFitting"/> class.
 /// </summary>
 /// <param name="interpolationFactory">The <see cref="MklDataFitting"/> object that serves as factory for the current object.</param>
 internal LogMklDataFitting(MklDataFitting interpolationFactory)
     : base(interpolationFactory)
 {
 }