mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
44 lines (26 loc) • 830 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)