SqlFunctions.Atan Method
Returns the arctangent of the specified value.
Assembly: EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)
Name | Description | |
---|---|---|
![]() ![]() | Atan(Nullable<Decimal>) | A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent. |
![]() ![]() | Atan(Nullable<Double>) | A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent. |
SqlFunctions.Atan Method (Nullable<Decimal>)
A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")] [DbFunctionAttribute("SqlServer", "ATAN")] public static Nullable<double> Atan( Nullable<decimal> arg )
Parameters
- arg
-
Type:
System.Nullable<Decimal>
The tangent of an angle.
SqlFunctions.Atan Method (Nullable<Double>)
A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "arg")] [DbFunctionAttribute("SqlServer", "ATAN")] public static Nullable<double> Atan( Nullable<double> arg )
Parameters
- arg
-
Type:
System.Nullable<Double>
The tangent of an angle.