Skip to content

Commit 27981f4

Browse files
committed
Added Math_Cosh article
1 parent 1f01c41 commit 27981f4

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Math_Cosh
2+
3+
`Math_Cosh` returns the hyperbolic cosine of the specified angle.
4+
5+
```csharp
6+
Math_Cosh (
7+
@value FLOAT (53))
8+
RETURNS FLOAT (53)
9+
```
10+
11+
## Parameters
12+
13+
- **value**: An angle, measured in radians.
14+
15+
## Returns
16+
17+
The hyperbolic cosine of value. If value is equal to NegativeInfinity or PositiveInfinity, PositiveInfinity is returned. If value is equal to NaN, NaN is returned.
18+
19+
## Example
20+
21+
```csharp
22+
SELECT SQLNET::Math_Cosh(2147483647, 2147483647)
23+
```
24+

docs2/pages/documentations/math/math.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ Provides methods for trigonometric, and other common mathematical functions.
55
| Name | Description | Example |
66
| :--- | :---------- | :------ |
77
| [Math_BigMul(a, b)](/math-bigmul) | Produces the full product of two 32-bit numbers. | [Try it]()|
8+
| [Math_Cosh(value)](/math-cosh) | Returns the hyperbolic cosine of the specified angle. | [Try it]()|
89

0 commit comments

Comments
 (0)