SqlFunctions.Cot Method

Definition

Overloads

Cot(Nullable<Double>)

A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.

Cot(Nullable<Decimal>)

A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.

Cot(Nullable<Double>)

A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.

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

Parameters

arg
Nullable<Double>

An angle, measured in radians.

Returns

The trigonometric cotangent of the specified angle.

Attributes

Applies to

Cot(Nullable<Decimal>)

A mathematical function that returns the trigonometric cotangent of the specified angle, in radians.

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

Parameters

arg
Nullable<Decimal>

An angle, measured in radians.

Returns

The trigonometric cotangent of the specified angle.

Attributes

Applies to