コード例 #1
0
ファイル: MathLog.java プロジェクト: BackupTheBerlios/extex
  /**
   * Calculate
   *
   * @param context the context
   * @param source the tokensource
   * @return the real-value
   * @throws InterpreterException if a error occoured
   */
  protected Real calculate(final Context context, final TokenSource source)
      throws InterpreterException {

    Real real = new Real(context, source);
    return new Real(Math.log(real.getValue()));
  }