SqlFunctions.Atan Method

Definition

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.

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.

[System.Data.Entity.DbFunction("SqlServer", "ATAN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Atan (Nullable<decimal> arg);
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

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.

[System.Data.Entity.DbFunction("SqlServer", "ATAN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Atan (Nullable<double> arg);
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

Applies to