ClassAsin
Calculates the arcsine (inverse sine) of a number and returns the angle in radians within the range -π/2 to π/2.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Asin : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionAsin
Inherited Members
Constructors
Asin()
Initializes a new ASIN function instance for computing inverse sine values.
Declaration
public Asin()
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 arcsine 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