ClassCoth
Implements the COTH function, which calculates the hyperbolic cotangent of a number.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Coth : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionCoth
Inherited Members
Constructors
Coth()
Initializes a new COTH function instance for computing hyperbolic cotangent values.
Declaration
public Coth()
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 hyperbolic cotangent of the specified number and returns the result or an error if the value is zero or exceeds limits.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides