Skip to content

Commit 942dc65

Browse files
committed
chore: update examples
--- 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: passed - 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 ---
1 parent 01395e4 commit 942dc65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/zdotu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var y = filledarrayBy( 10, 'complex128', rand );
173173
console.log( y.toString() );
174174

175175
// Compute the dot product:
176-
var out = zdotu( x.length, x, 1, 0, y, -1, y.length-1 );
176+
var out = zdotu( x.length, x, 1, y, -1 );
177177
console.log( out.toString() );
178178

179179
// Compute the dot product using alternative indexing semantics:

lib/node_modules/@stdlib/blas/base/zdotu/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var y = filledarrayBy( 10, 'complex128', rand );
3434
console.log( y.toString() );
3535

3636
// Compute the dot product:
37-
var out = zdotu( x.length, x, 1, 0, y, -1, y.length-1 );
37+
var out = zdotu( x.length, x, 1, y, -1 );
3838
console.log( out.toString() );
3939

4040
// Compute the dot product using alternative indexing semantics:

0 commit comments

Comments
 (0)