Skip to content

Commit 94b73d9

Browse files
committed
docs: update repl.txt
--- 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: 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 ---
1 parent 8312416 commit 94b73d9

File tree

1 file changed

+8
-8
lines changed
  • lib/node_modules/@stdlib/lapack/base/dgtts2/docs

1 file changed

+8
-8
lines changed

lib/node_modules/@stdlib/lapack/base/dgtts2/docs/repl.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@
6464
<Float64Array>[ ~1.44, ~1.25, ~1.55 ]
6565

6666
// Using typed array views:
67-
> var L0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.25, 0.26666667 ] );
67+
> var DL0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.25, 0.26666667 ] );
6868
> var D0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 4.0, 3.75, 3.73333333 ] );
69-
> var U0 = new {{alias:@stdlib/array/float64}}([ 0.0, 1.0, 0.73333333 ]);
70-
> var U20 = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0 ] );
71-
> var I0 = new {{alias:@stdlib/array/int32}}( [ 0, 0, 1, 2 ] );
69+
> var DU0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 1.0, 0.73333333 ] );
70+
> var DU20 = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0 ] );
71+
> var IPIV0 = new {{alias:@stdlib/array/int32}}( [ 0, 0, 1, 2 ] );
7272
> var B0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 7.0, 8.0, 7.0 ] );
73-
> DL = new Float64Array( L0.buffer, L0.BYTES_PER_ELEMENT*1 );
73+
> DL = new Float64Array( DL0.buffer, DL0.BYTES_PER_ELEMENT*1 );
7474
> D = new Float64Array( D0.buffer, D0.BYTES_PER_ELEMENT*1 );
75-
> DU = new Float64Array( U0.buffer, U0.BYTES_PER_ELEMENT*1 );
76-
> DU2 = new Float64Array( U20.buffer, U20.BYTES_PER_ELEMENT*1 );
77-
> IPIV = new Int32Array( I0.buffer, I0.BYTES_PER_ELEMENT*1 );
75+
> DU = new Float64Array( DU0.buffer, DU0.BYTES_PER_ELEMENT*1 );
76+
> DU2 = new Float64Array( DU20.buffer, DU20.BYTES_PER_ELEMENT*1 );
77+
> IPIV = new Int32Array( IPIV0.buffer, IPIV0.BYTES_PER_ELEMENT*1 );
7878
> B = new Float64Array( B0.buffer, B0.BYTES_PER_ELEMENT*1 );
7979
> {{alias}}( ord, 1, 3, 1, DL, D, DU, DU2, IPIV, B, 3 );
8080
> B0

0 commit comments

Comments
 (0)