Skip to content

Commit 8db8a75

Browse files
committed
chore: clean-up
--- 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: passed - 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: passed - 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 40461dd commit 8db8a75

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/logistic/quantile/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ for ( i = 0; i < 10; i++ ) {
180180

181181
#### stdlib_base_dists_logistic_quantile( p, mu, s )
182182

183-
Returns the quantile for a logistic distribution with probability `p`, location `mu` and scale `s`.
183+
Evaluates the [quantile function][quantile-function] for a [logistic][logistic-distribution] distribution with parameters `mu` (location parameter) and `s` (scale parameter).
184184

185185
```c
186186
double out = stdlib_base_dists_logistic_quantile( 0.8, 0.0, 1.0 );
@@ -189,7 +189,7 @@ double out = stdlib_base_dists_logistic_quantile( 0.8, 0.0, 1.0 );
189189

190190
The function accepts the following arguments:
191191

192-
- **p**: `[in] double` probability parameter.
192+
- **p**: `[in] double` input probability.
193193
- **mu**: `[in] double` location parameter.
194194
- **s**: `[in] double` scale parameter.
195195

@@ -246,6 +246,10 @@ int main( void ) {
246246

247247
<!-- /.examples -->
248248

249+
</section>
250+
251+
<!-- /.c -->
252+
249253
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
250254

251255
<section class="related">

lib/node_modules/@stdlib/stats/base/dists/logistic/quantile/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
// MAIN //
4242

43-
bench( pkg, opts, function benchmark( b ) {
43+
bench( pkg+'::native', opts, function benchmark( b ) {
4444
var len;
4545
var mu;
4646
var s;

lib/node_modules/@stdlib/stats/base/dists/logistic/quantile/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ static double random_uniform( const double min, const double max ) {
9595
*/
9696
static double benchmark( void ) {
9797
double elapsed;
98-
double p[ 100 ];
9998
double mu[ 100 ];
99+
double p[ 100 ];
100100
double s[ 100 ];
101101
double y;
102102
double t;

0 commit comments

Comments
 (0)