Skip to content

Commit 20e05b0

Browse files
authored
chore: apply suggestion
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 4d82ea2 commit 20e05b0

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/normal/quantile

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/quantile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ int main( void ) {
240240
for ( i = 0; i < 10; i++ ) {
241241
p = random_uniform( 0.0, 1.0 );
242242
mu = random_uniform( -5.0, 5.0 );
243-
sigma = random_uniform( 0.0, 20.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
243+
sigma = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
244244
y = stdlib_base_dists_normal_quantile( p, mu, sigma );
245245
printf( "p:%.4f, µ: %.4f, σ: %.4f, Q(p;µ,σ): %.4f\n", p, mu, sigma, y );
246246
}

0 commit comments

Comments
 (0)