Skip to content

Commit b3babe1

Browse files
committed
docs: add 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: 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 39e963a commit b3babe1

File tree

4 files changed

+103
-3
lines changed

4 files changed

+103
-3
lines changed

lib/node_modules/@stdlib/lapack/base/dlaset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
@license Apache-2.0
44
5-
Copyright (c) 2024 The Stdlib Authors.
5+
Copyright (c) 2025 The Stdlib Authors.
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
2+
{{alias}}( order, uplo, M, N, A, LDA, alpha, beta )
3+
Initialises an M by N matrix `A` to `beta` on the diagonals and `alpha`
4+
on the off diagonals.
5+
6+
Indexing is relative to the first index. To introduce an offset, use typed
7+
array views.
8+
9+
Parameters
10+
----------
11+
order: string
12+
Row-major (C-style) or column-major (Fortran-style) order. Must be
13+
either 'row-major' or 'column-major'.
14+
15+
uplo: string
16+
Specifies whether to set the upper or lower triangular/trapezoidal part
17+
of a matrix `A`.
18+
19+
M: integer
20+
Number of rows in `A`.
21+
22+
N: integer
23+
Number of columns in `A`.
24+
25+
A: Float64Array
26+
Input matrix `A`.
27+
28+
LDA: integer
29+
Stride of the first dimension of `A` (a.k.a., leading dimension of the
30+
matrix `A`).
31+
32+
alpha: number
33+
Number to set on the off-diagonal elements.
34+
35+
beta: number
36+
Number to set on the diagonal elements.
37+
38+
Returns
39+
-------
40+
A: Float64Array
41+
Output matrix.
42+
43+
Examples
44+
--------
45+
> var A = new {{alias:@stdlib/array/float64}}( 4 );
46+
> {{alias}}( 'row-major', 'all', 2, 2, A, 2, 0.0, 1.0 )
47+
<Float64Array>[ 1.0, 0.0, 0.0, 1.0 ]
48+
49+
50+
{{alias}}.ndarray( uplo, M, N, A, sa1, sa2, oa, alpha, beta )
51+
Initialises an M by N matrix `A` to `beta` on the diagonals and `alpha`
52+
on the off diagonals using alternative indexing semantics.
53+
54+
While typed array views mandate a view offset based on the underlying
55+
buffer, the offset parameters support indexing semantics based on starting
56+
indices.
57+
58+
Parameters
59+
----------
60+
uplo: string
61+
Specifies whether to set the upper or lower triangular/trapezoidal part
62+
of a matrix `A`.
63+
64+
M: integer
65+
Number of rows in `A`.
66+
67+
N: integer
68+
Number of columns in `A`.
69+
70+
A: Float64Array
71+
Input matrix `A`.
72+
73+
sa1: integer
74+
Stride of the first dimension of `A`.
75+
76+
sa2: integer
77+
Stride of the second dimension of `A`.
78+
79+
oa: integer
80+
Starting index for `A`.
81+
82+
alpha: number
83+
Number to set on the off-diagonal elements.
84+
85+
beta: number
86+
Number to set on the diagonal elements.
87+
88+
Returns
89+
-------
90+
A: Float64Array
91+
Output matrix.
92+
93+
Examples
94+
--------
95+
> var A = new {{alias:@stdlib/array/float64}}( 4 );
96+
> {{alias}}.ndarray( 'all', 2, 2, A, 2, 1, 0, 0.0, 1.0 )
97+
<Float64Array>[ 1.0, 0.0, 0.0, 1.0 ]
98+
99+
See Also
100+
--------

lib/node_modules/@stdlib/lapack/base/dlaset/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2025 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

lib/node_modules/@stdlib/lapack/base/dlaset/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2024 The Stdlib Authors.
4+
* Copyright (c) 2025 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)