COS (Transact-sql)
Radyan cinsinden belirtilen ifade belirtilen açı, trigonometrik kosinüsünü verir matematiksel bir işlevdir.
Transact-SQL Sözdizim Kuralları
Sözdizimi
COS ( float_expression )
Bağımsız değişkenler
- float_expression
Olan bir ifade türü float.
Dönüş Türleri
float
Örnekler
Aşağıdaki örnek, belirli açı cos verir.
DECLARE @angle float
SET @angle = 14.78
SELECT 'The COS of the angle is: ' + CONVERT(varchar,COS(@angle))
GO
DECLARE @angle float
SET @angle = 14.78
SELECT 'The COS of the angle is: ' + CONVERT(varchar,COS(@angle))
GO
Sonuç kümesi buradadır.
The COS of the angle is: -0.599465
(1 row(s) affected)
The COS of the angle is: -0.599465
(1 row(s) affected)