Class
Atanh

Implements the ATANH function, which calculates the inverse hyperbolic tangent of a number.

Definition

Constructors

Atanh()

Initializes a new ATANH function instance for calculating inverse hyperbolic tangent, constrained to inputs between -1 and 1 (exclusive).

Declaration

cs-api-definition
public Atanh()

Fields

FunctionName

The name of the function.

Declaration

cs-api-definition
public static readonly string FunctionName

Field Value

string

Properties

FunctionInfo

Gets metadata describing the function's signature, category, and arguments.

Declaration

cs-api-definition
public override FunctionInfo FunctionInfo { get; }

Property Value

FunctionInfo

The function info as FunctionInfo.

Overrides FunctionBase.FunctionInfo

Name

Gets the function name used in formulas.

Declaration

cs-api-definition
public override string Name { get; }

Property Value

string

The name as String.

Overrides FunctionBase.Name

Methods

EvaluateOverride(FunctionEvaluationContext<double>)

Evaluates the inverse hyperbolic tangent of the provided number and returns the result or an error expression if the input is out of range.

Declaration

cs-api-definition
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)

Parameters

context

FunctionEvaluationContext<double>

The context.

Returns

RadExpression

Functions result as RadExpression.

Overrides FunctionWithSameTypeArguments<double>.EvaluateOverride(FunctionEvaluationContext<double>)