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
-[`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)_
38
39
-[`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)_
39
40
@@ -47,8 +48,9 @@ A total of 2 issues were closed in this release:
47
48
48
49
### Contributors
49
50
50
-
A total of 3 people contributed to this release. Thank you to the following contributors:
51
+
A total of 4 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -206,7 +206,7 @@ for ( i = 0; i < 100; i++ ) {
206
206
207
207
#### stdlib_base_dists_laplace_logcdf( x, mu, b )
208
208
209
-
Evaluates the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at value `x`.
209
+
Evaluates the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at a value `x`.
210
210
211
211
```c
212
212
double out = stdlib_base_dists_laplace_logcdf( 2.0, 0.0, 1.0 );
Copy file name to clipboardExpand all lines: include/stdlib/stats/base/dists/laplace/logcdf.h
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@
16
16
* limitations under the License.
17
17
*/
18
18
19
-
#ifndefSTDLIB_STATS_BASE_DISTS_LOGCDF_MODE_H
20
-
#defineSTDLIB_STATS_BASE_DISTS_LOGCDF_MODE_H
19
+
#ifndefSTDLIB_STATS_BASE_DISTS_LAPLACE_LOGCDF_H
20
+
#defineSTDLIB_STATS_BASE_DISTS_LAPLACE_LOGCDF_H
21
21
22
22
/*
23
23
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
@@ -27,12 +27,12 @@ extern "C" {
27
27
#endif
28
28
29
29
/**
30
-
* Returns the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at value `x`.
30
+
* Returns the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at a value `x`.
Copy file name to clipboardExpand all lines: src/main.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
#include"stdlib/constants/float64/ln_half.h"
24
24
25
25
/**
26
-
* Returns the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at value `x`.
26
+
* Returns the logarithm of the cumulative distribution function (CDF) for a Laplace distribution with location parameter `mu` and scale parameter `b` at a value `x`.
0 commit comments