Skip to content

Commit 0d8ee45

Browse files
authored
chore: address commit comments
PR-URL: #5461 Closes: #5428 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent c320d8b commit 0d8ee45

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/cauchy/logpdf

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/cauchy/logpdf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ for ( i = 0; i < 10; i++ ) {
177177
Evaluates the natural logarithm of the [probability density function][pdf] (PDF) for a [Cauchy][cauchy-distribution] distribution with parameters `x0` (location parameter) and `gamma > 0` (scale parameter).
178178

179179
```c
180-
double out = stdlib_base_dists_cauchy_logpdf( 0.5, 0.0, 2.0 );
181-
// returns ~0.333
180+
double out = stdlib_base_dists_cauchy_logpdf( 2.0, 1.0, 1.0 );
181+
// returns ~-1.838
182182
```
183183

184184
The function accepts the following arguments:

0 commit comments

Comments
 (0)