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
Evaluates the logarithm of the cumulative distribution function (CDF) for a Gumbel distribution
181
+
Evaluates the logarithm of the [cumulative distribution function][cdf] (CDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta` (scale parameter).
182
182
183
183
```c
184
184
double out = stdlib_base_dists_gumbel_logcdf( 10.0, 0.0, 3.0 );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dists/gumbel/logcdf/src/main.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@
24
24
* Evaluates the cumulative distribution function (CDF) for a Gumbel distribution with location parameter `mu` and scale parameter `beta` at a value `x`.
0 commit comments