Skip to content

Commit 21644a8

Browse files
committed
Auto-generated commit
1 parent ac8023f commit 21644a8

6 files changed

Lines changed: 11 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,7 @@ A total of 49 issues were closed in this release:
527527

528528
<details>
529529

530+
- [`edef1e2`](https://github.com/stdlib-js/stdlib/commit/edef1e298a551ed453c4edc3d769746baf5dbde1) - **chore:** minor clean-up _(by Philipp Burckhardt)_
530531
- [`7cd0373`](https://github.com/stdlib-js/stdlib/commit/7cd03736a4c79cf5fff04bb84c97c458f987f4c6) - **bench:** fix function name and use `random_uniform` _(by Karan Anand)_
531532
- [`0e13713`](https://github.com/stdlib-js/stdlib/commit/0e13713f19e808617d4bff6b51af0d9ae6802e20) - **chore:** fix C lint errors [(#7370)](https://github.com/stdlib-js/stdlib/pull/7370) _(by zhanggy)_
532533
- [`3e45add`](https://github.com/stdlib-js/stdlib/commit/3e45adda10132ea8f55ad60c1504c8fd19b0841d) - **chore:** address commit comments for commit `6b1c190` [(#7431)](https://github.com/stdlib-js/stdlib/pull/7431) _(by Lokesh Ranjan)_

base/special/beta/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ for ( x = 0; x < 10; x++ ) {
144144
Evaluates the [beta function][beta-function].
145145

146146
```c
147-
double out = stdlib_base_beta( 1.0, 1,0 );
147+
double out = stdlib_base_beta( 1.0, 1.0 );
148148
// returns 1.0
149149

150-
out = stdlib_base_beta( 5.0, 0.2);
150+
out = stdlib_base_beta( 5.0, 0.2 );
151151
// returns ~3.382
152152
```
153153

@@ -190,7 +190,7 @@ int main( void ) {
190190
int i;
191191
int j;
192192
for ( i = 0; i < 5; i++ ) {
193-
for ( j = 0; j < 5; j++ ){
193+
for ( j = 0; j < 5; j++ ) {
194194
out = stdlib_base_beta( x[ i ], y[ j ] );
195195
printf ( "x: %lf, y: %lf, out: %lf\n", x[ i ], y[ j ], out );
196196
}

base/special/betaln/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var betaln = require( '@stdlib/math/base/special/betaln' );
6868

6969
#### betaln( x, y )
7070

71-
Evaluates the the [natural logarithm][natural-logarithm] of the [beta function][beta-function].
71+
Evaluates the [natural logarithm][natural-logarithm] of the [beta function][beta-function].
7272

7373
```javascript
7474
var val = betaln( 0.0, 0.0 );
@@ -141,7 +141,7 @@ for ( x = 0; x < 10; x++ ) {
141141

142142
#### stdlib_base_betaln( x, y )
143143

144-
Evaluates the the [natural logarithm][natural-logarithm] of the [beta function][beta-function].
144+
Evaluates the [natural logarithm][natural-logarithm] of the [beta function][beta-function].
145145

146146
```c
147147
double v = stdlib_base_betaln( 5.0, 0.2 );

base/special/binomcoefln/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ int main( void ) {
231231
double out;
232232
int i;
233233
for ( i = 0; i < 5; i++ ) {
234-
out = stdlib_base_binomcoef( a[ i ], b[ i ] );
234+
out = stdlib_base_binomcoefln( a[ i ], b[ i ] );
235235
printf( "binomcoefln(%" PRId64 ", %" PRId64 ") = %lf\n", a[ i ], b[ i ], out );
236236
}
237237
}

base/special/boxcox/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
<section class="intro">
2828

29-
The one-parameter [Box-Cox transformation][box-cox-transformation] is defined as
29+
The one-parameter [Box-Cox transformation][box-cox-transformation] is defined as
3030

3131
<!-- <equation class="equation" label="eq:boxcox_transformation_one_parameter" align="center" raw="y^{\lambda} = \begin{cases}\frac{y^{\lambda} - 1}{\lambda} & \textrm{if}\ \lambda \neq 0 \\ \ln(y) & \textrm{if}\ \lambda = 0 \end{cases}" alt="One-Parameter Box-Cox Transformation"> -->
3232

@@ -186,7 +186,7 @@ int main( void ) {
186186
int i;
187187
int j;
188188
for ( i = 0; i < 3; i++ ) {
189-
for ( j = 0; j < 3; j++ ){
189+
for ( j = 0; j < 3; j++ ) {
190190
out = stdlib_base_boxcox( x[ i ], y[ j ] );
191191
printf ( "x: %lf, y: %lf, out: %lf\n", x[ i ], y[ j ], out );
192192
}

base/special/boxcox1p/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
<section class="intro">
2828

29-
A one-parameter [Box-Cox transformation][box-cox-transformation] is defined as
29+
A one-parameter [Box-Cox transformation][box-cox-transformation] is defined as
3030

3131
<!-- <equation class="equation" label="eq:boxcox_transformation_one_parameter" align="center" raw="y^{\lambda} = \begin{cases}\frac{(y + 1)^{\lambda} - 1}{\lambda} & \textrm{if}\ \lambda \neq 0 \\ \log(y + 1) & \textrm{if}\ \lambda = 0 \end{cases}" alt="One-Parameter Box-Cox Transformation"> -->
3232

@@ -189,7 +189,7 @@ int main( void ) {
189189
int i;
190190
int j;
191191
for ( i = 0; i < 3; i++ ) {
192-
for ( j = 0; j < 3; j++ ){
192+
for ( j = 0; j < 3; j++ ) {
193193
b = stdlib_base_boxcox1p( x[ i ], l[ j ] );
194194
printf ( "boxcox1p(%lf, %lf) = %lf\n", x[ i ], l[ j ], b );
195195
}

0 commit comments

Comments
 (0)