Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Returns the [median][median] of a [geometric][geometric-distribution] distributi

```c
double out = stdlib_base_dists_geometric_median( 0.5 );
// returns 1
// returns 0
```

The function accepts the following arguments:
Expand Down Expand Up @@ -184,7 +184,6 @@ double stdlib_base_dists_geometric_median( const double p );
### Examples

```c
#include "stdlib/stats/base/dists/geometric/median.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
Expand Down
Loading