Skip to content

Commit 7f54c3a

Browse files
authored
fix: README.d
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent f4943c3 commit 7f54c3a

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/kurtosis

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/kumaraswamy/kurtosis/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ for ( i = 0; i < 10; i++ ) {
186186

187187
#### stdlib_base_dists_kumaraswamy_kurtosis( a, b )
188188

189-
Returns the standard deviation of a Kumaraswamy's double bounded distribution.
189+
Returns the [excess kurtosis][kurtosis] of a [Kumaraswamy's double bounded][kumaraswamy-distribution] distribution with first shape parameter `a` and second shape parameter `b`.
190190

191191
```c
192192
double v = stdlib_base_dists_kumaraswamy_kurtosis( 0.5, 1.0 );
@@ -237,10 +237,10 @@ int main( void ) {
237237
int i;
238238
239239
for ( i = 0; i < 25; i++ ) {
240-
a = random_uniform( 0.0, 10.0 ) - 5.0;
241-
b = random_uniform( 0.0, 20.0 );
240+
a = rand() * 10;
241+
b = rand() * 10;
242242
y = stdlib_base_dists_kumaraswamy_kurtosis( a, b );
243-
printf( "a: %lf, b: %lf, Std(X;a,b): %lf\n", a, b, y );
243+
printf( "a: %lf, b: %lf, Kurt(X;a,b): %lf\n", a, b, y );
244244
}
245245
}
246246
```

0 commit comments

Comments
 (0)