sinh 函数

sinh 函数

Hyperbolic sine of an argument in radians

双曲线正弦曲线的弧度自变量。

Syntax

语法

Y = sinh(X)

Description 

描述

The sinh function operates element-wise on arrays. The function's domains and ranges include complex values. All angles are in radians.

双曲线函数阵列上的操作元素方法。函数的区域和区间包括复数。所有弧度方面。

Y = sinh(X) returns the hyperbolic sine of the elements of X.

Y=sinh(X)返回X的元素双曲线正弦。

Examples

例如:

Graph the hyperbolic sine function over the domain 

双曲线在区间的正弦函数图像。

x = -5:0.01:5;

plot(x,sinh(x)), grid on

Definition

定义

The hyperbolic sine can be defined as

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

Algorithm

算法

sinh 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.

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

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