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 2424* Computes the arccosecant (in degrees) of a double-precision floating-point number.
2525*
2626* @param x input value
27- * @returns arccosecant (in degrees)
27+ * @return arccosecant (in degrees)
2828*
2929* @example
3030* 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 ) {
111111* Evaluates the digamma function via asymptotic expansion.
112112*
113113* @param x input value
114- * @returns function value
114+ * @return function value
115115*/
116116static double asymptoticApprox ( const double x ) {
117117 double y ;
@@ -129,7 +129,7 @@ static double asymptoticApprox( const double x ) {
129129* Evaluates the digamma function over interval `[1,2]`.
130130*
131131* @param x input value
132- * @returns function value
132+ * @return function value
133133*/
134134static double rationalApprox ( const double x ) {
135135 double g ;
@@ -211,7 +211,7 @@ static double rationalApprox( const double x ) {
211211* - Max error found: \\(2.452\mbox{e-}17\\) (double precision)
212212*
213213* @param x input value
214- * @returns function value
214+ * @return function value
215215*
216216* @example
217217* double v = stdlib_base_digamma( -2.5 );
Original file line number Diff line number Diff line change 2626* Computes the hyperbolic arctangent of a number.
2727*
2828* @param x input value
29- * @returns hyperbolic arctangent (in radians)
29+ * @return hyperbolic arctangent (in radians)
3030*
3131* @example
3232* double v = stdlib_base_fast_atanh( 0.0 );
You can’t perform that action at this time.
0 commit comments