Skip to content

Commit 8e1057e

Browse files
fix: change example inputs
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent a0ab54c commit 8e1057e

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main( void ) {
3232
int i;
3333

3434
for ( i = 0; i < 25; i++ ) {
35-
mu = random_uniform( 0.0, 10.0 ) - 5.0;
35+
mu = random_uniform( -5.0, 5.0 );
3636
beta = random_uniform( 0.0, 20.0 );
3737
y = stdlib_base_dists_gumbel_skewness( mu, beta );
3838
printf( "µ: %lf, β: %lf, Skew(X;µ,β): %lf\n", mu, beta, y );

0 commit comments

Comments
 (0)