Skip to content

Commit f9ec3b6

Browse files
committed
docs: fix function names
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8c463ff commit f9ec3b6

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/base/dists/frechet/logcdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ for ( i = 0; i < 100; i++ ) {
201201
Evaluates the natural logarithm of the [cumulative distribution function][cdf] (CDF) for a [Fréchet][frechet-distribution] distribution with shape `alpha`, scale `s`, and location `m` at a value `x`.
202202

203203
```c
204-
double y = stdlib_base_frechet_logcdf( 10.0, 2.0, 3.0, 2.0 );
204+
double y = stdlib_base_dists_frechet_logcdf( 10.0, 2.0, 3.0, 2.0 );
205205
// returns ~-0.141
206206
```
207207

lib/node_modules/@stdlib/stats/base/dists/frechet/median/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ for ( i = 0; i < 10; i++ ) {
173173
#include "stdlib/stats/base/dists/frechet/median.h"
174174
```
175175

176-
#### sstdlib_base_dists_frechet_median( alpha, s, m )
176+
#### stdlib_base_dists_frechet_median( alpha, s, m )
177177

178178
Returns the median for a Fréchet distribution with shape `alpha`, scale `s`, and location `m`.
179179

180180
```c
181-
double y = stdlib_base_frechet_median( 5.0, 2.0, 0.0 );
181+
double y = stdlib_base_dists_frechet_median( 5.0, 2.0, 0.0 );
182182
// returns ~2.152
183183
```
184184

lib/node_modules/@stdlib/stats/base/dists/frechet/mode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ for ( i = 0; i < 10; i++ ) {
178178
Returns the mode for a Fréchet distribution with shape `alpha`, scale `s`, and location `m`.
179179

180180
```c
181-
double y = stdlib_base_frechet_mode( 5.0, 2.0, 0.0 );
181+
double y = stdlib_base_dists_frechet_mode( 5.0, 2.0, 0.0 );
182182
// returns ~1.928
183183
```
184184

lib/node_modules/@stdlib/stats/base/dists/frechet/skewness/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ for ( i = 0; i < 10; i++ ) {
187187
Returns the skewness for a Fréchet distribution with shape `alpha`, scale `s`, and location `m`.
188188

189189
```c
190-
double y = stdlib_base_frechet_skewness( 5.0, 2.0, 0.0 );
190+
double y = stdlib_base_dists_frechet_skewness( 5.0, 2.0, 0.0 );
191191
// returns ~3.535
192192
```
193193

lib/node_modules/@stdlib/stats/base/dists/frechet/variance/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ for ( i = 0; i < 10; i++ ) {
187187
Returns the variance for a Fréchet distribution with shape `alpha`, scale `s`, and location `m`.
188188

189189
```c
190-
double y = stdlib_base_frechet_variance( 5.0, 2.0, 0.0 );
190+
double y = stdlib_base_dists_frechet_variance( 5.0, 2.0, 0.0 );
191191
// returns ~0.535
192192
```
193193

lib/node_modules/@stdlib/stats/base/dists/levy/cdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ for ( i = 0; i < 100; i++ ) {
170170
Evaluates the [cumulative distribution function][cdf] (CDF) for a [Lévy][levy-distribution] distribution with parameters `mu` (location parameter) and `c > 0` (scale parameter).
171171

172172
```c
173-
double out = stdlib_base_levy_cdf( 2.0, 0.0, 1.0 );
173+
double out = stdlib_base_dists_levy_cdf( 2.0, 0.0, 1.0 );
174174
// returns ~0.48
175175
```
176176

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mgf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ int main( void ) {
260260
t = random_uniform( -1.0, 1.0 );
261261
r = random_uniform( 1.0, 10.0 );
262262
p = random_uniform( 0.0, 1.0 );
263-
y = stdlib_base_negative_binomial_mgf( t, r, p );
263+
y = stdlib_base_dists_negative_binomial_mgf( t, r, p );
264264
printf( "t: %lf, r: %lf, p: %lf, M_X(t;r,p): %lf\n", t, r, p, y );
265265
}
266266
}

0 commit comments

Comments
 (0)