Skip to content

Commit

Permalink
chore: updated values as per given review
Browse files Browse the repository at this point in the history
---
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: passed
  - 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
---

---
type: pre_push_report
description: Results of running various checks prior to pushing changes.
report:
  - task: run_javascript_examples
    status: na
  - 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: na
---
  • Loading branch information
0PrashantYadav0 committed Jan 13, 2025
1 parent 2c1b610 commit 2a80103
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions lib/node_modules/@stdlib/stats/base/dvariancepn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ console.log( v );
Computes the [variance][variance] of a double-precision floating-point strided array using a two-pass algorithm.

```c
const double x[] = { 1.0, -2.0, 2.0 };
const double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 }

double v = stdlib_strided_dvariancepn( 3, 1.0, x, 1 );
// returns ~4.3333
double v = stdlib_strided_dvariancepn( 4, 1.0, x, 1, 0 );
// returns ~6.666667
```
The function accepts the following arguments:
Expand All @@ -262,10 +262,10 @@ double stdlib_strided_dvariancepn( const CBLAS_INT N, const double correction, c
Computes the [variance][variance] of a double-precision floating-point strided array using a two-pass algorithm and alternative indexing semantics.

```c
const double x[] = { 1.0, -2.0, 2.0 };
const double x[] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 }

double v = stdlib_strided_dvariancepn_ndarray( 3, 1.0, x, 1, 0 );
// returns ~4.3333
double v = stdlib_strided_dvariancepn_ndarray( 4, 1.0, x, 1, 0 );
// returns ~6.666667
```
The function accepts the following arguments:
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/base/dvariancepn/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Input array.

strideX: integer
Stride Length.
Stride length.

Returns
-------
Expand Down Expand Up @@ -87,7 +87,7 @@
Input array.

strideX: integer
Stride Length.
Stride length.

offsetX: integer
Starting index.
Expand Down

0 comments on commit 2a80103

Please sign in to comment.