Skip to content
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ee627b9
feat: add blas/base/dgbmv
ShabiShett07 Mar 17, 2025
283fa31
chore: update copyright years
stdlib-bot Mar 17, 2025
6b21054
fix: base.js
ShabiShett07 Mar 17, 2025
0e12f13
fix: benchmark
ShabiShett07 Mar 17, 2025
39d57a0
fix: test.ndarray.js
ShabiShett07 Mar 17, 2025
514e3a9
fix: test.ndarray.js
ShabiShett07 Mar 17, 2025
1d2b031
fix: benchmark.js
ShabiShett07 Mar 17, 2025
a0218f6
fix: benchmark.ndarray.js
ShabiShett07 Mar 17, 2025
d295ff9
fix: benchmark.ndarray.js
ShabiShett07 Mar 17, 2025
303c143
fix: lint errors
ShabiShett07 Mar 18, 2025
8954e1d
chore: add documented test fixtures
ShabiShett07 Mar 18, 2025
3ccc05e
fix: rename test.sgbmv.js to test.dgbmv.js
ShabiShett07 Mar 18, 2025
45f1cbb
fix: column_major_t.json
ShabiShett07 Mar 18, 2025
002565e
fix: update row_major_t.json
ShabiShett07 Mar 18, 2025
54c09e0
fix: update row_major_t.json
ShabiShett07 Mar 18, 2025
edf7ed1
fix: row_major_t.json error
ShabiShett07 Mar 18, 2025
19f60ae
fix: column_major_t.json error
ShabiShett07 Mar 18, 2025
6c2745e
chore: update isnanf to isnan
ShabiShett07 Apr 11, 2025
17860b4
chore: update isnanf to isnan
ShabiShett07 Apr 11, 2025
9f3788c
fix: error condition
ShabiShett07 Apr 11, 2025
0906bc7
chore: disable max length
ShabiShett07 Apr 11, 2025
b513243
chore: update base.js
ShabiShett07 Apr 11, 2025
6aa53d7
chore: remove indentation
ShabiShett07 Apr 20, 2025
78daeb7
bench: change variable naming and declaration
ShabiShett07 Jul 17, 2025
c53d921
docs: update jsdoc
ShabiShett07 Jul 17, 2025
d818820
chore: update test.ts
ShabiShett07 Jul 17, 2025
c35d036
chore: update repl.txt
ShabiShett07 Jul 17, 2025
085dff4
refactor: reduce arithmetic operations
ShabiShett07 Jul 17, 2025
dc9e6f7
chore: update example
ShabiShett07 Jul 17, 2025
d51b2c2
test: update fixtures structure
ShabiShett07 Jul 18, 2025
20c6df0
chore: use ndarray example
ShabiShett07 Jul 18, 2025
d4798c8
bench: fix failing benchmarks
ShabiShett07 Jul 18, 2025
0a9161c
bench: use banded matrix
Jul 26, 2025
591f7c7
chore: use banded matrix
Jul 26, 2025
1e4ddb9
test: restructure banded matrices
Jul 26, 2025
3cd60ba
chore: update A_mat
Jul 29, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: error condition
Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
  • Loading branch information
ShabiShett07 authored Apr 11, 2025
commit 9f3788c6efc84403ee8aa71711a7d0b97c6dba04
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dgbmv/lib/dgbmv.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var base = require( './base.js' );
* @throws {TypeError} second argument must be a valid transpose operation
* @throws {RangeError} third argument must be a nonnegative integer
* @throws {RangeError} fourth argument must be a nonnegative integer
* @throws {RangeError} seventh argument must be greater than or equal to max(1,M)
* @throws {RangeError} seventh argument must be greater than or equal KL + KU + 1
* @throws {RangeError} ninth argument must be non-zero
* @throws {RangeError} twelfth argument must be non-zero
* @returns {Float64Array} `y`
Expand Down
Loading