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: lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/median/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -174,8 +174,8 @@ for ( i = 0; i < 10; i++ ) {
174
174
Returns the [median][median] of a [Kumaraswamy's double bounded][kumaraswamy-distribution] distribution with first shape parameter `a` and second shape parameter `b`.
175
175
176
176
```c
177
-
double out = stdlib_base_dists_kumaraswamy_median( 2.0, 3.0 );
178
-
// returns ~1.817
177
+
double out = stdlib_base_dists_kumaraswamy_median( 1.0, 1.0 );
178
+
// returns 0.5
179
179
```
180
180
181
181
The function accepts the following arguments:
@@ -212,7 +212,7 @@ double stdlib_base_dists_kumaraswamy_median( const double a, const double b );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/median/include/stdlib/stats/base/dists/kumaraswamy/median.h
+1-1
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ extern "C" {
27
27
#endif
28
28
29
29
/**
30
-
* Returns the median of a Kumaraswamy distribution.
30
+
* Returns the median of a Kumaraswamy's double bounded distribution.
0 commit comments