コード例 #1
0
ファイル: ImpliedVolSurface.cs プロジェクト: stepinto163/Qdp
        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));
 }