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
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,37 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2024-12-24)
7
+
## Unreleased (2025-01-19)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`03954e1`](https://github.com/stdlib-js/stdlib/commit/03954e125b6cc761a5456e51c909ab09b18d15ee) - add C implementation for `stats/base/dists/logistic/stdev`[(#4189)](https://github.com/stdlib-js/stdlib/pull/4189)
-[`03954e1`](https://github.com/stdlib-js/stdlib/commit/03954e125b6cc761a5456e51c909ab09b18d15ee) - **feat:** add C implementation for `stats/base/dists/logistic/stdev`[(#4189)](https://github.com/stdlib-js/stdlib/pull/4189)_(by Vivek Maurya, Philipp Burckhardt, stdlib-bot)_
15
38
-[`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
16
39
17
40
</details>
@@ -24,9 +47,10 @@
24
47
25
48
### Contributors
26
49
27
-
A total of 1 person contributed to this release. Thank you to this contributor:
50
+
A total of 2 people contributed to this release. Thank you to the following contributors:
Copy file name to clipboardExpand all lines: README.md
+96-1Lines changed: 96 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,101 @@ for ( i = 0; i < 10; i++ ) {
164
164
165
165
<!-- /.examples -->
166
166
167
+
<!-- C interface documentation. -->
168
+
169
+
* * *
170
+
171
+
<sectionclass="c">
172
+
173
+
## C APIs
174
+
175
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
Returns the [standard deviation][standard-deviation] for a [logistic][logistic-distribution] distribution with location parameter `mu` and scale parameter `s`.
196
+
197
+
```c
198
+
double out = stdlib_base_dists_logistic_stdev( 0.0, 1.0 );
199
+
// returns ~1.814
200
+
```
201
+
202
+
The function accepts the following arguments:
203
+
204
+
-**mu**: `[in] double` location parameter.
205
+
-**s**: `[in] double` scale parameter.
206
+
207
+
```c
208
+
doublestdlib_base_dists_logistic_stdev( const double mu, const double s );
209
+
```
210
+
211
+
</section>
212
+
213
+
<!-- /.usage -->
214
+
215
+
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
168
263
169
264
<sectionclass="references">
@@ -206,7 +301,7 @@ See [LICENSE][stdlib-license].
0 commit comments