Skip to content

Commit 1832ea1

Browse files
committed
chore: minor clean-up
1 parent 308e19a commit 1832ea1

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

lib/node_modules/@stdlib/stats/base/dists/wald/mode/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,10 @@ The [mode][mode] for a [Wald][wald-distribution] random variable with mean `μ`
3535
```
3636

3737
<!-- <div class="equation" align="center" data-raw-text="\operatorname{mode}\left( X \right) = \mu \cdot \frac{\sqrt{4\lambda^2 + 9\mu^2} - 3\mu}{2\lambda}" data-equation="eq:wald_mode">
38-
<br>
3938
</div> -->
4039

4140
<!-- </equation> -->
4241

43-
where `μ > 0` is the mean and `λ > 0` is the shape parameter.
44-
4542
</section>
4643

4744
<!-- /.intro -->

lib/node_modules/@stdlib/stats/base/dists/wald/mode/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ int main( void ) {
3636
mu = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
3737
lambda = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
3838
y = stdlib_base_dists_wald_mode( mu, lambda );
39-
printf( "µ: %lf, λ: %lf, mode(X;µ,λ): %lf\n", mu, lambda, y );
39+
printf( "µ: %.4f, λ: %.4f, mode(X;µ,λ): %.4f\n", mu, lambda, y );
4040
}
4141
}

0 commit comments

Comments
 (0)