SqlFunctions.Atan Method

Definition

A mathematical function that returns the angle, in radians, whose tangent is the specified numerical value. This angle is called the arctangent.

Overloads

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.

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see ATAN (Transact-SQL).

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.

public:
 static Nullable<double> Atan(Nullable<System::Decimal> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ATAN")]
public static double? Atan (decimal? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ATAN")>]
static member Atan : Nullable<decimal> -> Nullable<double>
Public Shared Function Atan (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

The tangent of an angle.

Returns

An angle, measured in radians.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see ATAN (Transact-SQL).

Applies to

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.

public:
 static Nullable<double> Atan(Nullable<double> arg);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ATAN")]
public static double? Atan (double? arg);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "ATAN")>]
static member Atan : Nullable<double> -> Nullable<double>
Public Shared Function Atan (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

The tangent of an angle.

Returns

An angle, measured in radians.

Attributes

Remarks

You cannot call this function directly. This function can only appear within a LINQ to Entities query.

This function is translated to a corresponding function in the database. For information about the corresponding SQL Server function, see ATAN (Transact-SQL).

Applies to