Skip to content

Commit 3cf6f11

Browse files
committed
docs: update stats/base/dists/levy examples to use Greek symbols
--- 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: passed - 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 ee919b6 commit 3cf6f11

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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
@@ -224,7 +224,7 @@ int main( void ) {
224224
mu = random_uniform( -20.0, 0.0 );
225225
c = random_uniform( 0.1, 10.0 );
226226
y = stdlib_base_dists_levy_cdf( x, mu, c );
227-
printf( "x: %lf, mu: %lf, c: %lf, F(x;mu,c): %lf\n", x, mu, c, y );
227+
printf( "x: %lf, µ: %lf, c: %lf, F(x;µ,c): %lf\n", x, mu, c, y );
228228
}
229229
}
230230
```

lib/node_modules/@stdlib/stats/base/dists/levy/cdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ int main( void ) {
3737
mu = random_uniform( -20.0, 0.0 );
3838
c = random_uniform( 0.1, 10.0 );
3939
y = stdlib_base_dists_levy_cdf( x, mu, c );
40-
printf( "x: %lf, mu: %lf, c: %lf, F(x;mu,c): %lf\n", x, mu, c, y );
40+
printf( "x: %lf, µ: %lf, c: %lf, F(x;µ,c): %lf\n", x, mu, c, y );
4141
}
4242
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ int main( void ) {
232232
x = random_uniform( mu, mu + 10.0 );
233233
c = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
234234
y = stdlib_base_dists_levy_logpdf( x, mu, c );
235-
printf( "x: %lf, mu: %lf, c: %lf, ln(f(x;mu,c)): %lf\n", x, mu, c, y );
235+
printf( "x: %lf, µ: %lf, c: %lf, ln(f(x;µ,c)): %lf\n", x, mu, c, y );
236236
}
237237
}
238238
```

lib/node_modules/@stdlib/stats/base/dists/levy/logpdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ int main( void ) {
3838
x = random_uniform( mu, mu + 10.0 );
3939
c = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
4040
y = stdlib_base_dists_levy_logpdf( x, mu, c );
41-
printf( "x: %lf, mu: %lf, c: %lf, ln(f(x;mu,c)): %lf\n", x, mu, c, y );
41+
printf( "x: %lf, µ: %lf, c: %lf, ln(f(x;µ,c)): %lf\n", x, mu, c, y );
4242
}
4343
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ int main( void ) {
222222
x = random_uniform( mu, mu + 10.0 );
223223
c = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
224224
y = stdlib_base_dists_levy_pdf( x, mu, c );
225-
printf( "x: %lf, mu: %lf, c: %lf, f(x;mu,c): %lf\n", x, mu, c, y );
225+
printf( "x: %lf, µ: %lf, c: %lf, f(x;µ,c): %lf\n", x, mu, c, y );
226226
}
227227
}
228228
```

lib/node_modules/@stdlib/stats/base/dists/levy/pdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ int main( void ) {
3838
x = random_uniform( mu, mu + 10.0 );
3939
c = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
4040
y = stdlib_base_dists_levy_pdf( x, mu, c );
41-
printf( "x: %lf, mu: %lf, c: %lf, f(x;mu,c): %lf\n", x, mu, c, y );
41+
printf( "x: %lf, µ: %lf, c: %lf, f(x;µ,c): %lf\n", x, mu, c, y );
4242
}
4343
}

0 commit comments

Comments
 (0)