SqlFunctions.Acos Method

Definition

Overloads

Acos(Nullable<Decimal>)

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

Acos(Nullable<Double>)

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

Acos(Nullable<Decimal>)

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

[System.Data.Entity.DbFunction("SqlServer", "ACOS")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<double> Acos (Nullable<decimal> arg1);
static member Acos : Nullable<decimal> -> Nullable<double>
Public Shared Function Acos (arg1 As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg1
Nullable<Decimal>

The cosine of an angle.

Returns

An angle, measured in radians.

Attributes

Applies to

Acos(Nullable<Double>)

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

[System.Data.Entity.DbFunction("SqlServer", "ACOS")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<double> Acos (Nullable<double> arg1);
static member Acos : Nullable<double> -> Nullable<double>
Public Shared Function Acos (arg1 As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg1
Nullable<Double>

The cosine of an angle.

Returns

The angle, in radians, defined by the input cosine value.

Attributes

Applies to