Skip to content

Commit

Permalink
fix: apply suggested changes
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: na
  - task: lint_package_json
    status: na
  - task: lint_repl_help
    status: na
  - task: lint_javascript_src
    status: passed
  - 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: passed
  - 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: na
  - 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
gururaj1512 committed Jan 13, 2025
1 parent 43450ff commit ad34fb9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/blas/base/zdotu/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { Complex128 } from '@stdlib/types/complex';
*/
interface Routine {
/**
* Computes the dot product of two double-precision complex floating-point vectors.
* Calculates the dot product of vectors `zx` and `zy`.
*
* @param N - number of indexed elements
* @param zx - first input array
Expand All @@ -45,7 +45,7 @@ interface Routine {
* var zx = new Complex128Array( [ 4.0, 2.0, -3.0, 5.0, -1.0, 7.0 ] );
* var zy = new Complex128Array( [ 2.0, 6.0, -1.0, -4.0, 8.0, 9.0 ] );
*
* var z = zdotu( 3, x, 1, y, 1 );
* var z = zdotu( 3, zx, 1, zy, 1 );
* // returns <Complex128>
*
* var re = real( z );
Expand All @@ -57,7 +57,7 @@ interface Routine {
( N: number, x: Complex128Array, strideX: number, y: Complex128Array, strideY: number ): Complex128;

/**
* Computes the dot product of `zx` and `zy` using alternative indexing semantics.
* Calculates the dot product of vectors `zx` and `zy` using alternative indexing semantics.
*
* @param N - number of indexed elements
* @param zx - first input array
Expand All @@ -76,7 +76,7 @@ interface Routine {
* var zx = new Complex128Array( [ 4.0, 2.0, -3.0, 5.0, -1.0, 7.0 ] );
* var zy = new Complex128Array( [ 2.0, 6.0, -1.0, -4.0, 8.0, 9.0 ] );
*
* var z = zdotu.ndarray( zx.length, x, 1, 0, y, 1, 0 );
* var z = zdotu.ndarray( zx.length, zx, 1, 0, zy, 1, 0 );
* // returns <Complex128>
*
* var re = real( z );
Expand All @@ -89,7 +89,7 @@ interface Routine {
}

/**
* Computes the dot product of `x` and `y`.
* Computes the dot product of two double-precision complex floating-point vectors.
*
* @param N - number of indexed elements
* @param zx - first input array
Expand Down
5 changes: 2 additions & 3 deletions lib/node_modules/@stdlib/blas/base/zdotu/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var cadd = require( '@stdlib/complex/float64/base/add' );
// MAIN //

/**
* Computes the dot product of `x` and `y`.
* Calculates the dot product of two double-precision complex floating-point vectors.
*
* @param {integer} N - number of indexed elements
* @param {Complex128Array} zx - first input array
Expand All @@ -43,12 +43,11 @@ var cadd = require( '@stdlib/complex/float64/base/add' );
* var Complex128Array = require( '@stdlib/array/complex128' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
* var zdotu = require( '@stdlib/blas/base/zdotu' );
*
* var zx = new Complex128Array( [ 4.0, 2.0, -3.0, 5.0, -1.0, 7.0 ] );
* var zy = new Complex128Array( [ 2.0, 6.0, -1.0, -4.0, 8.0, 9.0 ] );
*
* var z = zdotu( 3, zx, 1, zy, 1 );
* var z = zdotu( 3, zx, 1, 0, zy, 1, 0 );
* // returns <Complex128>
*
* var re = real( z );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zdotu/lib/zdotu.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' );
// MAIN //

/**
* Calculates the dot product of vectors `zx` and `zy`.
* Calculates the dot product of two double-precision complex floating-point vectors.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Complex128Array} zx - first input array
Expand Down

0 comments on commit ad34fb9

Please sign in to comment.