示例#1
0
    public override String VisitArctanh([NotNull] mathParser.ArctanhContext context)
    {
        //(1/2)ln((1+x)/(1-x))
        expression = expression + "0.5 * System.Math.Log((1 + ";
        Visit(context.GetChild(2));
        expression = expression + ")/(1 - ";
        Visit(context.GetChild(2));
        expression = expression + "))";

        return(expression);
    }
示例#2
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="mathParser.arctanh"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitArctanh([NotNull] mathParser.ArctanhContext context)
 {
     return(VisitChildren(context));
 }