ClassAcosh
Calculates the inverse hyperbolic cosine of a number, accepting values greater than or equal to 1.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Acosh : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionAcosh
Inherited Members
Constructors
Acosh()
Initializes a new ACOSH function instance for computing inverse hyperbolic cosine values.
Declaration
public Acosh()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets the metadata describing this function's category, arguments, and behavior.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<double>)
Evaluates the inverse hyperbolic cosine of the numeric argument and returns the result, validating the input is at least 1.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides