Skip to content

Commit 303c143

Browse files
committed
fix: lint errors
--- 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: passed - 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 --- --- 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 ---
1 parent d295ff9 commit 303c143

File tree

2 files changed

+76
-76
lines changed

2 files changed

+76
-76
lines changed

lib/node_modules/@stdlib/blas/base/dgbmv/docs/repl.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
{{alias}}( ord, trans, M, N, KL, KU, α, A, lda, x, sx, β, y, sy )
2+
{{alias}}( ord,trans,M,N,KL,KU,α,A,lda,x,sx,β,y,sy )
33
Performs one of the matrix-vector operations `y := α*A*x + β*y, or
44
y := α*A**T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are
55
vectors and `A` is an `M` by `N` band matrix, with `KL`
@@ -68,31 +68,31 @@
6868
// Standard usage:
6969
> var x = new {{alias:@stdlib/array/float64}}( [ 1.0, 1.0, 1.0 ] );
7070
> var y = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0, 0.0 ] );
71-
> var A = new {{alias:@stdlib/array/float64}}( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ] );
71+
> var A = new {{alias:@stdlib/array/float64}}( [ 0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,0.0 ] );
7272
> var ord = 'row-major';
7373
> var trans = 'no-transpose';
74-
> {{alias}}( ord, trans, 3, 3, 1, 1, 1.0, A, 3, x, 1, 1.0, y, 1 )
74+
> {{alias}}( ord,trans,3,3,1,1,1.0,A,3,x,1,1.0,y,1 )
7575
<Float64Array>[ 3.0, 12.0, 13.0 ]
7676

7777
// Advanced indexing:
7878
> x = new {{alias:@stdlib/array/float64}}( [ 1.0, 1.0, 1.0 ] );
7979
> y = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0, 0.0 ] );
80-
> A = new {{alias:@stdlib/array/float64}}( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ] );
81-
> {{alias}}( ord, trans, 3, 3, 1, 1, 1.0, A, 3, x, -1, 1.0, y, -1 )
80+
> A = new {{alias:@stdlib/array/float64}}( [ 0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,0.0 ] );
81+
> {{alias}}( ord,trans,3,3,1,1,1.0,A,3,x,-1,1.0,y,-1 )
8282
<Float64Array>[ 13.0, 12.0, 3.0 ]
8383

8484
// Using typed array views:
8585
> var x0 = new {{alias:@stdlib/array/float64}}( [ 1.0, 1.0, 1.0, 1.0 ] );
8686
> var y0 = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0, 0.0, 0.0] );
87-
> A = new {{alias:@stdlib/array/float64}}( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ] );
87+
> A = new {{alias:@stdlib/array/float64}}( [ 0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,0.0 ] );
8888
> var x1 = new {{alias:@stdlib/array/float64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
8989
> var y1 = new {{alias:@stdlib/array/float64}}( y0.buffer, y0.BYTES_PER_ELEMENT*1 );
90-
> {{alias}}( ord, trans, 3, 3, 1, 1, 1.0, A, 3, x1, 1, 1.0, y1, 1 );
90+
> {{alias}}( ord,trans,3,3,1,1,1.0,A,3,x1,1,1.0,y1,1 );
9191
> y0
9292
<Float64Array>[ 0.0, 3.0, 12.0, 13.0 ]
9393

9494

95-
{{alias}}.ndarray( trans, M, N, KL, KU, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )
95+
{{alias}}.ndarray( trans,M,N,KL,KU,α,A,sa1,sa2,oa,x,sx,ox,β,y,sy,oy )
9696
Performs one of the matrix-vector operations `y = α*A*x + β*y` or
9797
`y = α*A**T*x + β*y`, using alternative indexing semantics and where `α` and
9898
`β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
@@ -164,9 +164,9 @@
164164
--------
165165
> var x = new {{alias:@stdlib/array/float64}}( [ 1.0, 1.0, 1.0 ] );
166166
> var y = new {{alias:@stdlib/array/float64}}( [ 0.0, 0.0, 0.0 ] );
167-
> var A = new {{alias:@stdlib/array/float64}}( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ] );
167+
> var A = new {{alias:@stdlib/array/float64}}( [ 0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,0.0 ] );
168168
> var trans = 'no-transpose';
169-
> {{alias}}.ndarray( trans, 3, 3, 1, 1, 1.0, A, 3, 1, 0, x, 1, 0, 1, y, 1, 0 )
169+
> {{alias}}.ndarray( trans,3,3,1,1,1.0,A,3,1,0,x,1,0,1,y,1,0 )
170170
<Float64Array>[ 3.0, 12.0, 13.0 ]
171171

172172
See Also
Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
{
2-
"name": "@stdlib/blas/base/dgbmv",
3-
"version": "0.0.0",
4-
"description": "Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.",
5-
"license": "Apache-2.0",
6-
"author": {
2+
"name": "@stdlib/blas/base/dgbmv",
3+
"version": "0.0.0",
4+
"description": "Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
712
"name": "The Stdlib Authors",
813
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9-
},
10-
"contributors": [
11-
{
12-
"name": "The Stdlib Authors",
13-
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14-
}
15-
],
16-
"main": "./lib",
17-
"directories": {
18-
"benchmark": "./benchmark",
19-
"doc": "./docs",
20-
"example": "./examples",
21-
"lib": "./lib",
22-
"test": "./test"
23-
},
24-
"types": "./docs/types",
25-
"scripts": {},
26-
"homepage": "https://github.com/stdlib-js/stdlib",
27-
"repository": {
28-
"type": "git",
29-
"url": "git://github.com/stdlib-js/stdlib.git"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/stdlib-js/stdlib/issues"
33-
},
34-
"dependencies": {},
35-
"devDependencies": {},
36-
"engines": {
37-
"node": ">=0.10.0",
38-
"npm": ">2.7.0"
39-
},
40-
"os": [
41-
"aix",
42-
"darwin",
43-
"freebsd",
44-
"linux",
45-
"macos",
46-
"openbsd",
47-
"sunos",
48-
"win32",
49-
"windows"
50-
],
51-
"keywords": [
52-
"stdlib",
53-
"stdmath",
54-
"mathematics",
55-
"math",
56-
"blas",
57-
"level 2",
58-
"dgbmv",
59-
"linear",
60-
"algebra",
61-
"subroutines",
62-
"array",
63-
"ndarray",
64-
"float64",
65-
"float",
66-
"float64array",
67-
"banded"
68-
]
69-
}
14+
}
15+
],
16+
"main": "./lib",
17+
"directories": {
18+
"benchmark": "./benchmark",
19+
"doc": "./docs",
20+
"example": "./examples",
21+
"lib": "./lib",
22+
"test": "./test"
23+
},
24+
"types": "./docs/types",
25+
"scripts": {},
26+
"homepage": "https://github.com/stdlib-js/stdlib",
27+
"repository": {
28+
"type": "git",
29+
"url": "git://github.com/stdlib-js/stdlib.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/stdlib-js/stdlib/issues"
33+
},
34+
"dependencies": {},
35+
"devDependencies": {},
36+
"engines": {
37+
"node": ">=0.10.0",
38+
"npm": ">2.7.0"
39+
},
40+
"os": [
41+
"aix",
42+
"darwin",
43+
"freebsd",
44+
"linux",
45+
"macos",
46+
"openbsd",
47+
"sunos",
48+
"win32",
49+
"windows"
50+
],
51+
"keywords": [
52+
"stdlib",
53+
"stdmath",
54+
"mathematics",
55+
"math",
56+
"blas",
57+
"level 2",
58+
"dgbmv",
59+
"linear",
60+
"algebra",
61+
"subroutines",
62+
"array",
63+
"ndarray",
64+
"float64",
65+
"float",
66+
"float64array",
67+
"banded"
68+
]
69+
}

0 commit comments

Comments
 (0)