COS (Transact-SQL)
這個數學函數會傳回指定運算式中指定角度的三角餘弦函數 (以弧度為單位)。
語法
COS ( float_expression )
傳回類型
float
範例
下列範例會傳回特定角度的 COS。
DECLARE @angle float
SET @angle = 14.78
SELECT 'The COS of the angle is: ' + CONVERT(varchar,COS(@angle))
GO
以下為結果集:
The COS of the angle is: -0.599465
(1 row(s) affected)