共用方式為


SqlFunctions.Cot 方法

定義

數學函數,會傳回指定角度 (以弧度為單位) 的三角餘切函數。

多載

Cot(Nullable<Double>)

數學函數,會傳回指定角度 (以弧度為單位) 的三角餘切函數。

Cot(Nullable<Decimal>)

數學函數,會傳回指定角度 (以弧度為單位) 的三角餘切函數。

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 (Transact-SQL)

Cot(Nullable<Double>)

數學函數,會傳回指定角度 (以弧度為單位) 的三角餘切函數。

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

參數

arg
Nullable<Double>

以弧度為單位的角度。

傳回

指定之角度的三角餘切函數。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 (Transact-SQL)

適用於

Cot(Nullable<Decimal>)

數學函數,會傳回指定角度 (以弧度為單位) 的三角餘切函數。

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

參數

arg
Nullable<Decimal>

以弧度為單位的角度。

傳回

指定之角度的三角餘切函數。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢內。

此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 (Transact-SQL)

適用於