ClassAcos
Calculates the arccosine (inverse cosine) of a number and returns the angle in radians within the range 0 to π.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Acos : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionAcos
Inherited Members
Constructors
Acos()
Initializes a new ACOS function instance for computing inverse cosine values.
Declaration
public Acos()
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 arccosine of the numeric argument and returns the result, validating the input is within the range -1 to 1.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides