Cosh 函数

Cosh 函数

Hyperbolic cosine

双曲余弦

Syntax

语法

Y = cosh(X)

Description

描述

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

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

Y = cosh(X) returns the hyperbolic cosine for each element of X. 

Y=cosh(X)返回X的每个元素的双曲余弦。

Examples

例如:

Graph the hyperbolic cosine function over the domain.

双曲余弦在区间上的函数图像。

x = -5:0.01:5; 

plot(x,cosh(x)), grid on

Cosh 函数_第1张图片

Definition

定义

The hyperbolic cosine can be defined as

双曲余弦能够被定义为:

Algorithm

算法

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

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

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