File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ limitations under the License.
2626
2727## Usage
2828
29+ <!-- run-disable -->
30+
2931``` javascript
3032var asinh = require ( ' @stdlib/fastmath/special/asinh' );
3133```
@@ -34,6 +36,8 @@ var asinh = require( '@stdlib/fastmath/special/asinh' );
3436
3537Computes the [ hyperbolic arcsine] [ inverse-hyperbolic ] of a ` number ` (in radians).
3638
39+ <!-- run-disable -->
40+
3741``` javascript
3842var v = asinh ( 0.0 );
3943// returns 0.0
@@ -67,6 +71,8 @@ v = asinh( Infinity );
6771
6872- For large ` x ` , the function will overflow.
6973
74+ <!-- run-disable -->
75+
7076 ``` javascript
7177 var v = asinh ( 1.0e200 );
7278 // returns Infinity
@@ -75,6 +81,8 @@ v = asinh( Infinity );
7581
7682- For small ` x` , the function will underflow.
7783
84+ <!-- run-disable -->
85+
7886 ```javascript
7987 var v = asinh ( 1.0e-50 );
8088 // returns 0.0
@@ -87,6 +95,8 @@ v = asinh( Infinity );
8795
8896## Examples
8997
98+ <!-- run-disable -->
99+
90100<!-- eslint no-undef: "error" -->
91101
92102```javascript
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ limitations under the License.
2626
2727## Usage
2828
29+ <!-- run-disable -->
30+
2931``` javascript
3032var atan = require ( ' @stdlib/fastmath/special/atan' );
3133```
@@ -34,6 +36,8 @@ var atan = require( '@stdlib/fastmath/special/atan' );
3436
3537Computes the [ arctangent] [ arctangent ] of a ` number ` .
3638
39+ <!-- run-disable -->
40+
3741``` javascript
3842var v = atan ( 0.0 );
3943// returns ~0.0
@@ -56,6 +60,8 @@ v = atan( NaN );
5660
5761## Examples
5862
63+ <!-- run-disable -->
64+
5965<!-- eslint no-undef: "error" -->
6066
6167``` javascript
You can’t perform that action at this time.
0 commit comments