File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/math/base/special/betaln
include/stdlib/math/base/special Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ extern "C" {
2727#endif
2828
2929/**
30- * Evaluate the natural logarithm of the beta function.
30+ * Evaluates the natural logarithm of the beta function.
3131*/
3232double stdlib_base_betaln ( const double x , const double y );
3333
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ var LEN = ALGMCS.length;
5050// MAIN //
5151
5252/**
53- * Evaluate the n-term Chebyshev series at `x`.
53+ * Evaluates the n-term Chebyshev series at `x`.
5454*
5555* ## References
5656*
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ var XMAX = 3.745194030963158e306;
4040// MAIN //
4141
4242/**
43- * Compute the log gamma correction factor for `x >= 10`.
43+ * Computes the log gamma correction factor for `x >= 10`.
4444*
4545* ```tex
4646* \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' );
4242// MAIN //
4343
4444/**
45- * Evaluate the natural logarithm of the beta function.
45+ * Evaluates the natural logarithm of the beta function.
4646*
4747* @param {NonNegativeNumber } a - first input value
4848* @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' );
2626// MAIN //
2727
2828/**
29- * Evaluate the natural logarithm of the beta function.
29+ * Evaluates the natural logarithm of the beta function.
3030*
3131* @private
3232* @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;
5858static const double XMAX = 3.745194030963158e306 ;
5959
6060/**
61- * Evaluate the n-term Chebyshev series at `x`.
61+ * Evaluates the n-term Chebyshev series at `x`.
6262*
6363* ## References
6464*
@@ -90,7 +90,7 @@ static double dceval( const double x ) {
9090}
9191
9292/**
93- * Compute the log gamma correction factor for `x >= 10`.
93+ * Computes the log gamma correction factor for `x >= 10`.
9494*
9595* ```tex
9696* \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 ) {
115115}
116116
117117/**
118- * Evaluate the natural logarithm of the beta function.
118+ * Evaluates the natural logarithm of the beta function.
119119*
120120* @param a first input value
121121* @param b second input value
You can’t perform that action at this time.
0 commit comments