You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,25 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-03-05)
7
+
## Unreleased (2025-04-06)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`09c74b0`](https://github.com/stdlib-js/stdlib/commit/09c74b0526129f32667ef3101c9ccd91acaf924b) - add C implementation for `stats/base/dists/laplace/logcdf`[(#4422)](https://github.com/stdlib-js/stdlib/pull/4422)
@@ -24,6 +34,7 @@ This release closes the following issue:
24
34
25
35
<details>
26
36
37
+
-[`09c74b0`](https://github.com/stdlib-js/stdlib/commit/09c74b0526129f32667ef3101c9ccd91acaf924b) - **feat:** add C implementation for `stats/base/dists/laplace/logcdf`[(#4422)](https://github.com/stdlib-js/stdlib/pull/4422)_(by Dhruv Arvind Singh, Philipp Burckhardt, stdlib-bot)_
27
38
-[`e5238bb`](https://github.com/stdlib-js/stdlib/commit/e5238bb96b7138d346ea0db8b535aec64c8a856c) - **bench:** refactor random number generation in `stats/base/dists/laplace`[(#5270)](https://github.com/stdlib-js/stdlib/pull/5270)_(by GK Bishnoi)_
28
39
29
40
</details>
@@ -36,9 +47,11 @@ This release closes the following issue:
36
47
37
48
### Contributors
38
49
39
-
A total of 1 person contributed to this release. Thank you to this contributor:
50
+
A total of 3 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+98Lines changed: 98 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,104 @@ for ( i = 0; i < 100; i++ ) {
178
178
179
179
<!-- /.examples -->
180
180
181
+
<!-- C interface documentation. -->
182
+
183
+
* * *
184
+
185
+
<sectionclass="c">
186
+
187
+
## C APIs
188
+
189
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
Evaluates the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at value `x`.
210
+
211
+
```c
212
+
double out = stdlib_base_dists_laplace_logcdf( 2.0, 0.0, 1.0 );
0 commit comments