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/triangular/median/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,7 @@ for ( i = 0; i < 10; i++ ) {
169
169
170
170
#### stdlib_base_dists_triangular_median( a, b, c)
171
171
172
-
Evaluates the [median][median] for a [triangular][triangular-distribution] distribution with parameters `a` (lowe limit), `b` (upper limit) and `c` (mode).
172
+
Evaluates the [median][median] for a [triangular][triangular-distribution] distribution with parameters `a` (lower limit), `b` (upper limit) and `c` (mode).
173
173
174
174
```c
175
175
double out = stdlib_base_dists_triangular_median( 0.0, 1.0, 0.8 );
@@ -183,7 +183,7 @@ The function accepts the following arguments:
183
183
-**c**: `[in] double` mode.
184
184
185
185
```c
186
-
doublestdlib_base_dists_triangular_median( const double x, const double a, const double b );
186
+
doublestdlib_base_dists_triangular_median( const double a, const double b, const double c );
0 commit comments