Skip to content

Commit aa43153

Browse files
committed
Added Math_Sinh, and Math_Tanh article
1 parent 0b64c50 commit aa43153

4 files changed

Lines changed: 51 additions & 1 deletion

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Math_Tanh
2+
3+
`Math_Tanh` returns the hyperbolic tangent of the specified angle.
4+
5+
```csharp
6+
Math_Tanh (
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 tangent 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_Tanh(0.2)
23+
```
24+

docs2/pages/documentations/math/math-cosh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ The hyperbolic cosine of value. If value is equal to NegativeInfinity or Positiv
1919
## Example
2020

2121
```csharp
22-
SELECT SQLNET::Math_Cosh(2147483647, 2147483647)
22+
SELECT SQLNET::Math_Cosh(0.1)
2323
```
2424

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Math_Sinh
2+
3+
`Math_Sinh` returns the hyperbolic sine of the specified angle.
4+
5+
```csharp
6+
Math_Sinh (
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 sine 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_Sinh(0.1)
23+
```
24+

docs2/pages/documentations/math/math.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ Provides methods for trigonometric, and other common mathematical functions.
1111
| [Math_NthRoot(value, nth)](/math-nth-root) | Returns the nth root of a specified number. | [Try it]()|
1212
| [Math_RemainderInt32(a, b)](/math-remainder-int32) | Returns the remainder of two 32-bit signed integers. | [Try it]()|
1313
| [Math_RemainderInt64(a, b)](/math-remainder-int32) | Returns the remainder of two 64-bit signed integers. | [Try it]()|
14+
| [Math_Sinh(value)](/math-sinh) | Returns the hyperbolic sine of the specified angle. | [Try it]()|
15+
| [Math_Tanh(value)](/math-sinh) | Returns the hyperbolic tangent of the specified angle. | [Try it]()|

0 commit comments

Comments
 (0)