File tree 6 files changed +8
-8
lines changed
lib/node_modules/@stdlib/math/base/special/betaln
include/stdlib/math/base/special
6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ extern "C" {
27
27
#endif
28
28
29
29
/**
30
- * Evaluate the natural logarithm of the beta function.
30
+ * Evaluates the natural logarithm of the beta function.
31
31
*/
32
32
double stdlib_base_betaln ( const double x , const double y );
33
33
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ var LEN = ALGMCS.length;
50
50
// MAIN //
51
51
52
52
/**
53
- * Evaluate the n-term Chebyshev series at `x`.
53
+ * Evaluates the n-term Chebyshev series at `x`.
54
54
*
55
55
* ## References
56
56
*
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ var XMAX = 3.745194030963158e306;
40
40
// MAIN //
41
41
42
42
/**
43
- * Compute the log gamma correction factor for `x >= 10`.
43
+ * Computes the log gamma correction factor for `x >= 10`.
44
44
*
45
45
* ```tex
46
46
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ var correction = require( './gamma_correction.js' );
42
42
// MAIN //
43
43
44
44
/**
45
- * Evaluate the natural logarithm of the beta function.
45
+ * Evaluates the natural logarithm of the beta function.
46
46
*
47
47
* @param {NonNegativeNumber } a - first input value
48
48
* @param {NonNegativeNumber } b - second input value
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
26
26
// MAIN //
27
27
28
28
/**
29
- * Evaluate the natural logarithm of the beta function.
29
+ * Evaluates the natural logarithm of the beta function.
30
30
*
31
31
* @private
32
32
* @param {NonNegativeNumber } a - first input value
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ static const double XBIG = 94906265.62425156;
58
58
static const double XMAX = 3.745194030963158e306 ;
59
59
60
60
/**
61
- * Evaluate the n-term Chebyshev series at `x`.
61
+ * Evaluates the n-term Chebyshev series at `x`.
62
62
*
63
63
* ## References
64
64
*
@@ -90,7 +90,7 @@ static double dceval( const double x ) {
90
90
}
91
91
92
92
/**
93
- * Compute the log gamma correction factor for `x >= 10`.
93
+ * Computes the log gamma correction factor for `x >= 10`.
94
94
*
95
95
* ```tex
96
96
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
@@ -115,7 +115,7 @@ static double gammaCorrection( const double x ) {
115
115
}
116
116
117
117
/**
118
- * Evaluate the natural logarithm of the beta function.
118
+ * Evaluates the natural logarithm of the beta function.
119
119
*
120
120
* @param a first input value
121
121
* @param b second input value
You can’t perform that action at this time.
0 commit comments