Skip to content

Commit 5f399e8

Browse files
authored
style: fix indentation
1 parent 3030c59 commit 5f399e8

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/frechet/mean/examples/c

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/frechet/mean/examples/c/example.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ int main( void ) {
3434
int i;
3535

3636
for ( i = 0; i < 25; i++ ) {
37-
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
38-
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
39-
m = random_uniform( -20.0, 20.0 );
37+
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
38+
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
39+
m = random_uniform( -20.0, 20.0 );
4040
y = stdlib_base_dists_frechet_mean( alpha, s, m );
4141
printf( "α: %lf, s: %lf, m: %lf, E(X;α,s,m): %lf\n", alpha, s, m, y );
4242
}

0 commit comments

Comments
 (0)