Skip to content

Commit 3fdc2ab

Browse files
committed
docs: 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent a3cd058 commit 3fdc2ab

File tree

1 file changed

+9
-9
lines changed
  • lib/node_modules/@stdlib/lapack/base/dlacpy/lib

1 file changed

+9
-9
lines changed

lib/node_modules/@stdlib/lapack/base/dlacpy/lib/ndarray.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,29 +44,29 @@ var base = require( './base.js' );
4444
* @example
4545
* var Float64Array = require( '@stdlib/array/float64' );
4646
*
47-
* var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
48-
* var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
47+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
48+
* var B = new Float64Array( 6 );
4949
*
5050
* dlacpy( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
51-
* // B => <Float64Array>[ 0.0, 0.0, 1.0, 2.0, 3.0, 4.0 ]
51+
* // B => <Float64Array>[ 0.0, 0.0, 2.0, 3.0, 4.0, 5.0 ]
5252
*
5353
* @example
5454
* var Float64Array = require( '@stdlib/array/float64' );
5555
*
56-
* var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
57-
* var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
56+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
57+
* var B = new Float64Array( 6 );
5858
*
5959
* dlacpy( 'upper', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
60-
* // B => <Float64Array>[ 0.0, 0.0, 1.0, 2.0, 53.0, 4.0 ]
60+
* // B => <Float64Array>[ 0.0, 0.0, 2.0, 3.0, 0.0, 5.0 ]
6161
*
6262
* @example
6363
* var Float64Array = require( '@stdlib/array/float64' );
6464
*
65-
* var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
66-
* var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
65+
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
66+
* var B = new Float64Array( 6 );
6767
*
6868
* dlacpy( 'lower', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
69-
* // B => <Float64Array>[ 0.0, 0.0, 1.0, 312.0, 3.0, 4.0 ]
69+
* // B => <Float64Array>[ 0.0, 0.0, 2.0, 0.0, 4.0, 5.0 ]
7070
*/
7171
function dlacpy( uplo, M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB ) { // eslint-disable-line max-len, max-params
7272
return base( uplo, M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB ); // eslint-disable-line max-len

0 commit comments

Comments
 (0)