File tree 1 file changed +5
-20
lines changed
lib/node_modules/@stdlib/math/base/special/acot/lib
1 file changed +5
-20
lines changed Original file line number Diff line number Diff line change 29
29
* var v = acot( 2.0 );
30
30
* // returns ~0.4636
31
31
*
32
- * @example
33
- * var acot = require( '@stdlib/math/base/special/acot' );
34
- *
35
- * var v = acot( 0.0 );
32
+ * v = acot( 0.0 );
36
33
* // returns ~1.5708
37
34
*
38
- * @example
39
- * var acot = require( '@stdlib/math/base/special/acot' );
40
- *
41
- * var v = acot( 0.5 );
35
+ * v = acot( 0.5 );
42
36
* // returns ~1.1071
43
37
*
44
- * @example
45
- * var acot = require( '@stdlib/math/base/special/acot' );
46
- *
47
- * var v = acot( 1.0 );
38
+ * v = acot( 1.0 );
48
39
* // returns ~0.7854
49
40
*
50
- * @example
51
- * var acot = require( '@stdlib/math/base/special/acot' );
52
- *
53
- * var v = acot( NaN );
41
+ * v = acot( NaN );
54
42
* // returns NaN
55
43
*
56
- * @example
57
- * var acot = require( '@stdlib/math/base/special/acot' );
58
- *
59
- * var v = acot( Infinity );
44
+ * v = acot( Infinity );
60
45
* // returns 0.0
61
46
*/
62
47
You can’t perform that action at this time.
0 commit comments