예제 #1
0
        override public double GetValue(Date x, double y)
        {
            double timeFraction = _dc.CalcDayCountFraction(_valuationDate, x);

            return(_interpolator.GetValue(timeFraction, y));
        }
예제 #2
0
파일: Curve2D.cs 프로젝트: stepinto163/Qdp
 public double GetValue(double x, double y)
 {
     return(_interpolator.GetValue(x, y));
 }