ClassAtanh
Implements the ATANH function, which calculates the inverse hyperbolic tangent of a number.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Atanh : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionAtanh
Inherited Members
Constructors
Atanh()
Initializes a new ATANH function instance for calculating inverse hyperbolic tangent, constrained to inputs between -1 and 1 (exclusive).
Declaration
public Atanh()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata describing the function's signature, category, and arguments.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
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
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides