ATAN (Transact-SQL)
Retorna o ângulo, em radiano, cuja tangente é uma expressão float especificada. Também é chamado de arco-tangente.
Sintaxe
ATAN ( float_expression )
Argumentos
- float_expression
É uma expressão do tipo float ou de um tipo que pode ser convertido implicitamente em float.
Tipos de retorno
float
Exemplos
O exemplo a seguir usa uma expressão float e retorna o ATAN do ângulo especificado.
SELECT 'The ATAN of -45.01 is: ' + CONVERT(varchar, ATAN(-45.01))
SELECT 'The ATAN of -181.01 is: ' + CONVERT(varchar, ATAN(-181.01))
SELECT 'The ATAN of 0 is: ' + CONVERT(varchar, ATAN(0))
SELECT 'The ATAN of 0.1472738 is: ' + CONVERT(varchar, ATAN(0.1472738))
SELECT 'The ATAN of 197.1099392 is: ' + CONVERT(varchar, ATAN(197.1099392))
GO
Conjunto de resultados.
-------------------------------
The ATAN of -45.01 is: -1.54858
(1 row(s) affected)
--------------------------------
The ATAN of -181.01 is: -1.56527
(1 row(s) affected)
--------------------------------
The ATAN of 0 is: 0
(1 row(s) affected)
----------------------------------
The ATAN of 0.1472738 is: 0.146223
(1 row(s) affected)
-----------------------------------
The ATAN of 197.1099392 is: 1.56572
(1 row(s) affected)