1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
[//]: # (generated using SlashBack 0.2.0)
# reciprocal methods
The following methods are all part of the **reciprocal methods**\.
Define secant, cosecant and cotangent functions\.
## Table of contents
* [**acot** function](#acot-function)
* [**acoth** function](#acoth-function)
* [**acsc** function](#acsc-function)
* [**acsch** function](#acsch-function)
* [**asec** function](#asec-function)
* [**asech** function](#asech-function)
* [**cot** function](#cot-function)
* [**coth** function](#coth-function)
* [**csc** function](#csc-function)
* [**csch** function](#csch-function)
* [**sec** function](#sec-function)
* [**sech** function](#sech-function)
### acot\(\) function
#### <code>glm.<code>**acot**(**x**: *float*) -\> *float*</code></code>
  Inverse cotangent function\.
### acoth\(\) function
#### <code>glm.<code>**acoth**(**x**: *float*) -\> *float*</code></code>
  Inverse cotangent hyperbolic function\.
### acsc\(\) function
#### <code>glm.<code>**acsc**(**x**: *float*) -\> *float*</code></code>
  Inverse cosecant function\.
### acsch\(\) function
#### <code>glm.<code>**acsch**(**x**: *float*) -\> *float*</code></code>
  Inverse cosecant hyperbolic function\.
### asec\(\) function
#### <code>glm.<code>**asec**(**x**: *float*) -\> *float*</code></code>
  Inverse secant function\.
### asech\(\) function
#### <code>glm.<code>**asech**(**x**: *float*) -\> *float*</code></code>
  Inverse secant hyperbolic function\.
### cot\(\) function
#### <code>glm.<code>**cot**(**angle**: *float*) -\> *float*</code></code>
  Cotangent function\. adjacent / opposite or ``` 1 / tan(x) ```\.
### coth\(\) function
#### <code>glm.<code>**coth**(**angle**: *float*) -\> *float*</code></code>
  Cotangent hyperbolic function\.
### csc\(\) function
#### <code>glm.<code>**csc**(**angle**: *float*) -\> *float*</code></code>
  Cosecant function\. hypotenuse / opposite or ``` 1 / sin(x) ```\.
### csch\(\) function
#### <code>glm.<code>**csch**(**angle**: *float*) -\> *float*</code></code>
  Cosecant hyperbolic function\.
### sec\(\) function
#### <code>glm.<code>**sec**(**angle**: *float*) -\> *float*</code></code>
  Secant function\. hypotenuse / adjacent or ``` 1 / cos(x) ```\.
### sech\(\) function
#### <code>glm.<code>**sech**(**angle**: *float*) -\> *float*</code></code>
  Secant hyperbolic function\.
|