asin( ) 函式
返回數值表達式的反正弦弧度值。
語法
ASIN(nExpression)
參數
nExpression
指定數值表達式,asin( ) 函式返回此表達式的反正弦值。nExpression 的取值範圍為 -1 到 +1,asin( ) 函式返回值的值域範圍為 -π/2 到 +π/2 (-1.57079
到 1.57079)。顯示結果中小數點的位置可以用 SET decimal 命令指定。
返回值類型
數值型
說明
可以用 RTOD( ) 函式將弧度值轉換成角度值。
asin( ) 函式示例
clear
? rtod(asin(0)) && 返回 0.00
store 1 to gnarcangle
? rtod(asin(gnarcangle)) && 返回 90.00
? rtod(asin(sqrt(2)/2)) && 返回 45.00