You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: 'Returns the inverse hyperbolic cosine of a specified number.'
4
+
Subjects:
5
+
- 'Computer Science'
6
+
- 'Web Development'
7
+
Tags:
8
+
- 'Functions'
9
+
- 'Math'
10
+
- 'Methods'
11
+
- 'Numbers'
12
+
CatalogContent:
13
+
- 'learn-c-sharp'
14
+
- 'paths/computer-science'
15
+
---
16
+
17
+
The **`Math.Acosh()`** method returns the inverse hyperbolic cosine (also known as hyperbolic arccosine) of a specified number. It computes the value whose hyperbolic cosine equals the given number.
18
+
19
+
## Syntax
20
+
21
+
```pseudo
22
+
Math.Acosh(number);
23
+
```
24
+
25
+
**Parameters:**
26
+
27
+
-`number`: A double-precision floating-point value greater than or equal to `1`, for which to compute the inverse hyperbolic cosine.
28
+
29
+
**Return value:**
30
+
31
+
- The inverse hyperbolic cosine of the specified number in radians as a `double`.
32
+
-`NaN` if the input is less than `1` or `NaN`.
33
+
34
+
## Example: Basic Usage of `Math.Acosh()`
35
+
36
+
This example calculates the inverse hyperbolic cosine of a number using `Math.Acosh()` and displays the result in radians:
0 commit comments