ASIN (Transact-SQL)
Devuelve el ángulo, expresado en radianes, cuyo seno es la expresión float especificada. También se denomina arco seno.
Sintaxis
ASIN ( float_expression )
Argumentos
- float_expression
Es una expresión de tipo float o un tipo que puede convertirse de forma implícita a float, con un valor de -1 a 1. Los valores situados fuera de este intervalo devuelven NULL y generan un error de dominio.
Tipos de valor devueltos
float
Ejemplos
En el siguiente ejemplo se toma una expresión float y se devuelve el valor de ASIN del ángulo especificado.
/* The first value will be -1.01. This fails because the value is
outside the range.*/
DECLARE @angle float
SET @angle = -1.01
SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
GO
-- The next value is -1.00.
DECLARE @angle float
SET @angle = -1.00
SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
GO
-- The next value is 0.1472738.
DECLARE @angle float
SET @angle = 0.1472738
SELECT 'The ASIN of the angle is: ' + CONVERT(varchar, ASIN(@angle))
GO
Éste es el conjunto de resultados.
-------------------------
.Net SqlClient Data Provider: Msg 3622, Level 16, State 1, Line 3
A domain error occurred.
---------------------------------
The ASIN of the angle is: -1.5708
(1 row(s) affected)
----------------------------------
The ASIN of the angle is: 0.147811
(1 row(s) affected)