You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/cauchy/cdf/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ for ( i = 0; i < 10; i++ ) {
167
167
168
168
#### stdlib_base_dists_cauchy_cdf( x, x0, gamma )
169
169
170
-
Evaluates the cumulative distribution function (CDF) for a Cauchy distribution.
170
+
Evaluates the [cumulative distribution function][cdf] (CDF) for a [Cauchy][cauchy-distribution] distribution with parameters `x0` (location parameter) and `gamma > 0` (scale parameter).
171
171
172
172
```c
173
173
double out = stdlib_base_dists_cauchy_cdf( 0.5, 0.0, 2.0 );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/cauchy/cdf/src/main.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
#include"stdlib/math/base/assert/is_nan.h"
21
21
#include"stdlib/math/base/special/atan2.h"
22
22
23
-
constdoubleONE_OVER_PI=0.3183098861837907;
23
+
staticconstdoubleONE_OVER_PI=0.3183098861837907;
24
24
25
25
/**
26
26
* Evaluates the cumulative distribution function (CDF) for a Cauchy distribution with location parameter `x0` and scale parameter `gamma` at a value `x`.
0 commit comments