@skybloxsystems/ticket-bot
Version:
44 lines (26 loc) • 873 B
Markdown
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
Calculate the inverse secant of a value. Defined as `asec(x) = acos(1/x)`.
For matrices, the function is evaluated element wise.
```js
math.asec(x)
```
Parameter | Type | Description
--------- | ---- | -----------
`x` | number &
Type | Description
---- | -----------
number &
```js
math.asec(0.5) // returns 1.0471975511965979
math.asec(math.sec(1.5)) // returns 1.5
math.asec(2) // returns 0 + 1.3169578969248166 i
```
[](acos.md),
[](acot.md),
[](acsc.md)