Skip to content

Commit 895313e

Browse files
committed
docs: update descriptions
--- 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: na - 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: passed - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent d60fca2 commit 895313e

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

lib/node_modules/@stdlib/stats/base/dists/cosine/cdf/test/test.cdf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ tape( 'if provided a negative `s`, the function returns `NaN`', function test( t
9090
t.end();
9191
});
9292

93-
tape( 'if provided `sigma` equals `0`, the function evaluates a degenerate distribution centered at `mu`', function test( t ) {
93+
tape( 'if provided `s` equals `0`, the function evaluates a degenerate distribution centered at `mu`', function test( t ) {
9494
var y;
9595

9696
y = cdf( 2.0, 2.0, 0.0 );

lib/node_modules/@stdlib/stats/base/dists/cosine/cdf/test/test.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'if provided a negative `s`, the created function always returns `NaN`', f
130130
t.end();
131131
});
132132

133-
tape( 'if `sigma` equals `0`, the created function evaluates a degenerate distribution centered at `mu`', function test( t ) {
133+
tape( 'if `s` equals `0`, the created function evaluates a degenerate distribution centered at `mu`', function test( t ) {
134134
var cdf;
135135
var y;
136136

lib/node_modules/@stdlib/stats/base/dists/cosine/cdf/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ tape( 'if provided a negative `s`, the function returns `NaN`', opts, function t
9999
t.end();
100100
});
101101

102-
tape( 'if provided `sigma` equals `0`, the function evaluates a degenerate distribution centered at `mu`', opts, function test( t ) {
102+
tape( 'if provided `s` equals `0`, the function evaluates a degenerate distribution centered at `mu`', opts, function test( t ) {
103103
var y;
104104

105105
y = cdf( 2.0, 2.0, 0.0 );

lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/include/stdlib/stats/base/dists/cosine/logcdf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluates the natural logarithm of the cumulative distribution function (LOGCDF) for a raised cosine distribution with parameters `mu` (location parameter) and `s` (scale parameter).
30+
* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a raised cosine distribution with parameters `mu` (location parameter) and `s` (scale parameter).
3131
*/
3232
double stdlib_base_dists_cosine_logcdf( const double x, const double mu, const double s );
3333

lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/test/test.factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'if provided a negative `s`, the created function always returns `NaN`', f
130130
t.end();
131131
});
132132

133-
tape( 'if `sigma` equals `0`, the created function evaluates a degenerate distribution centered at `mu`', function test( t ) {
133+
tape( 'if `s` equals `0`, the created function evaluates a degenerate distribution centered at `mu`', function test( t ) {
134134
var logcdf;
135135
var y;
136136

lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/test/test.logcdf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ tape( 'if provided a negative `s`, the function returns `NaN`', function test( t
9090
t.end();
9191
});
9292

93-
tape( 'if provided `sigma` equals `0`, the function evaluates a degenerate distribution centered at `mu`', function test( t ) {
93+
tape( 'if provided `s` equals `0`, the function evaluates a degenerate distribution centered at `mu`', function test( t ) {
9494
var y;
9595

9696
y = logcdf( 2.0, 2.0, 0.0 );

lib/node_modules/@stdlib/stats/base/dists/cosine/logcdf/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ tape( 'if provided a negative `s`, the function returns `NaN`', opts, function t
9999
t.end();
100100
});
101101

102-
tape( 'if provided `sigma` equals `0`, the function evaluates a degenerate distribution centered at `mu`', opts, function test( t ) {
102+
tape( 'if provided `s` equals `0`, the function evaluates a degenerate distribution centered at `mu`', opts, function test( t ) {
103103
var y;
104104

105105
y = logcdf( 2.0, 2.0, 0.0 );

lib/node_modules/@stdlib/stats/base/dists/cosine/logpdf/test/test.factory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tape( 'if provided `NaN` for any parameter, the created function returns `NaN`',
7777
t.end();
7878
});
7979

80-
tape( 'if provided a finite `mu` and `s`, the function returns a function which returns `-infinity` when provided `x` greater than `mu + sigma`', function test( t ) {
80+
tape( 'if provided a finite `mu` and `s`, the function returns a function which returns `-infinity` when provided `x` greater than `mu + s`', function test( t ) {
8181
var logpdf;
8282
var y;
8383

@@ -95,7 +95,7 @@ tape( 'if provided a finite `mu` and `s`, the function returns a function which
9595
t.end();
9696
});
9797

98-
tape( 'if provided a finite `mu` and `s`, the function returns a function which returns `-infinity` when provided `x` smaller than `mu - sigma`', function test( t ) {
98+
tape( 'if provided a finite `mu` and `s`, the function returns a function which returns `-infinity` when provided `x` smaller than `mu - s`', function test( t ) {
9999
var logpdf;
100100
var y;
101101

lib/node_modules/@stdlib/stats/base/dists/cosine/logpdf/test/test.logpdf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', functio
5454
t.end();
5555
});
5656

57-
tape( 'if provided `x` greater than `mu + sigma`, the function returns `-infinity`', function test( t ) {
57+
tape( 'if provided `x` greater than `mu + s`, the function returns `-infinity`', function test( t ) {
5858
var y = logpdf( PINF, 0.0, 1.0 );
5959
t.equal( y, NINF, 'returns -infinity' );
6060

@@ -67,7 +67,7 @@ tape( 'if provided `x` greater than `mu + sigma`, the function returns `-infinit
6767
t.end();
6868
});
6969

70-
tape( 'if provided `x` smaller than `mu - sigma`, the function returns `-infinity`', function test( t ) {
70+
tape( 'if provided `x` smaller than `mu - s`, the function returns `-infinity`', function test( t ) {
7171
var y = logpdf( NINF, 0.0, 1.0 );
7272
t.equal( y, NINF, 'returns -infinity' );
7373

lib/node_modules/@stdlib/stats/base/dists/cosine/logpdf/test/test.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, f
6363
t.end();
6464
});
6565

66-
tape( 'if provided `x` greater than `mu + sigma`, the function returns `-infinity`', opts, function test( t ) {
66+
tape( 'if provided `x` greater than `mu + s`, the function returns `-infinity`', opts, function test( t ) {
6767
var y = logpdf( PINF, 0.0, 1.0 );
6868
t.equal( y, NINF, 'returns -infinity' );
6969

@@ -76,7 +76,7 @@ tape( 'if provided `x` greater than `mu + sigma`, the function returns `-infinit
7676
t.end();
7777
});
7878

79-
tape( 'if provided `x` smaller than `mu - sigma`, the function returns `-infinity`', opts, function test( t ) {
79+
tape( 'if provided `x` smaller than `mu - s`, the function returns `-infinity`', opts, function test( t ) {
8080
var y = logpdf( NINF, 0.0, 1.0 );
8181
t.equal( y, NINF, 'returns -infinity' );
8282

0 commit comments

Comments
 (0)