File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
lib/node_modules/@stdlib/math/base/special Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 24
24
* Computes the arccosecant (in degrees) of a double-precision floating-point number.
25
25
*
26
26
* @param x input value
27
- * @returns arccosecant (in degrees)
27
+ * @return arccosecant (in degrees)
28
28
*
29
29
* @example
30
30
* double v = stdlib_base_acscd( 1.0 );
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ static double rational_pq( const double x ) {
111
111
* Evaluates the digamma function via asymptotic expansion.
112
112
*
113
113
* @param x input value
114
- * @returns function value
114
+ * @return function value
115
115
*/
116
116
static double asymptoticApprox ( const double x ) {
117
117
double y ;
@@ -129,7 +129,7 @@ static double asymptoticApprox( const double x ) {
129
129
* Evaluates the digamma function over interval `[1,2]`.
130
130
*
131
131
* @param x input value
132
- * @returns function value
132
+ * @return function value
133
133
*/
134
134
static double rationalApprox ( const double x ) {
135
135
double g ;
@@ -211,7 +211,7 @@ static double rationalApprox( const double x ) {
211
211
* - Max error found: \\(2.452\mbox{e-}17\\) (double precision)
212
212
*
213
213
* @param x input value
214
- * @returns function value
214
+ * @return function value
215
215
*
216
216
* @example
217
217
* double v = stdlib_base_digamma( -2.5 );
Original file line number Diff line number Diff line change 26
26
* Computes the hyperbolic arctangent of a number.
27
27
*
28
28
* @param x input value
29
- * @returns hyperbolic arctangent (in radians)
29
+ * @return hyperbolic arctangent (in radians)
30
30
*
31
31
* @example
32
32
* double v = stdlib_base_fast_atanh( 0.0 );
You can’t perform that action at this time.
0 commit comments