Skip to content

Commit 4627057

Browse files
committed
Auto-generated commit
1 parent 97b6de1 commit 4627057

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`33a4af8`](https://github.com/stdlib-js/stdlib/commit/33a4af8ea02d79120618cb4d50edb87d8aeab6a0) - **chore:** remove extra spaces _(by Philipp Burckhardt)_
3738
- [`895313e`](https://github.com/stdlib-js/stdlib/commit/895313e08f1006053fd6d995494bdf546002694e) - **docs:** update descriptions _(by Athan Reines)_
3839
- [`5f6bc87`](https://github.com/stdlib-js/stdlib/commit/5f6bc87d96a21664aeb7f4b097f03ba45ebb90ab) - **feat:** add C implementation for `stats/base/dists/cosine/logcdf` [(#4499)](https://github.com/stdlib-js/stdlib/pull/4499) _(by Prashant Kumar Yadav)_
3940

@@ -47,9 +48,10 @@ This release closes the following issue:
4748

4849
### Contributors
4950

50-
A total of 2 people contributed to this release. Thank you to the following contributors:
51+
A total of 3 people contributed to this release. Thank you to the following contributors:
5152

5253
- Athan Reines
54+
- Philipp Burckhardt
5355
- Prashant Kumar Yadav
5456

5557
</section>

examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ int main( void ) {
3838
mu = random_uniform( -50.0, 50.0 );
3939
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
4040
y = stdlib_base_dists_cosine_logcdf( x, mu, s );
41-
printf( "x: %lf, µ: %lf, s: %lf, ln(F(x;µ,s)): %lf\n", x, mu, s , y );
41+
printf( "x: %lf, µ: %lf, s: %lf, ln(F(x;µ,s)): %lf\n", x, mu, s, y );
4242
}
4343
}

0 commit comments

Comments
 (0)