asin 函数

asin 函数

Inverse sine, result in radians

反正弦曲线,弧度结果。

Syntax

语法

Y = asin(X)

Description

描述

Y = asin(X) returns the inverse sine (arcsine) for each element of X. For real elements of X in the domain , asin(X) is in the range  .For real elements of x outside the range, asin(X) is complex.The asin function operates element-wise on arrays. The function's domains and ranges include complex values. All angles are in radians.

Y=asin(X)返回X的每个元素的反正弦曲线(arcsine)X的真实元素在区间,asin(X)是在区间。X的真实元素在区间之外,asin(X)是复数。asin函数在阵列上操作元素方法。函数的区域和区间包括复数。所有弧度中的方面。

Examples

例如:

Graph the inverse sine function over the domain 

反正弦函数在区间的函数图像。

x = -1:.01:1; 

plot(x,asin(x)), grid on

asin 函数_第1张图片

Definition

定义

The inverse sine can be defined as

反正弦曲线能够被定义为:

Algorithm

算法

asin uses FDLIBM, which was developed at SunSoft, a Sun Microsystems, Inc. business, by Kwok C. Ng, and others. For information about FDLIBM, see http://www.netlib.org.

asin使用FDLIBM,其是在sunsoft发展,一个sun microsystemsinc。公司,通过KwokC.Ng,和其他人。关于FDLIBM的信息,查阅http://www.netlib.org.

你可能感兴趣的:(asin 函数)