Skip to content

feat: add blas/base/dsbmv #6650

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
chore: update examples
Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
  • Loading branch information
ShabiShett07 authored Apr 14, 2025
commit e25f528074f7f282503ffaf6c7e2c68c3364b39b
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dsbmv/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var opts = {
};

var N = 3;
var A = [ 1, 2, 3, 4, 5, 0 ];
var A = [ 1.0, 2.0, 3.0, 4.0, 5.0, 0.0 ];

var x = discreteUniform( N, -10, 10, opts );
var y = discreteUniform( N, -10, 10, opts );
Expand Down
Loading