You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsbmv/test/test.dsbmv.js
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -207,7 +207,7 @@ tape( 'the function throws an error if provided an invalid twelfth argument', fu
207
207
}
208
208
});
209
209
210
-
tape('the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, lower)',functiontest(t){
@@ -227,7 +227,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
227
227
t.end();
228
228
});
229
229
230
-
tape('the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (column-major, lower)',functiontest(t){
@@ -247,7 +247,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
247
247
t.end();
248
248
});
249
249
250
-
tape('the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, upper)',functiontest(t){
@@ -267,7 +267,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
267
267
t.end();
268
268
});
269
269
270
-
tape('the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (column-major, upper)',functiontest(t){
@@ -431,7 +431,7 @@ tape( 'when `α` is zero, the function scales the second input vector (column-ma
431
431
t.end();
432
432
});
433
433
434
-
tape('the function performs matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals (row-major, sx=1, sy=1)',functiontest(t){
@@ -451,7 +451,7 @@ tape( 'the function performs matrix-vector operation `y = α*A*x + β*y` where `
451
451
t.end();
452
452
});
453
453
454
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=1, sy=1)',functiontest(t){
454
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=2)',functiontest(t){
455
455
varexpected;
456
456
varout;
457
457
vara;
@@ -471,7 +471,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
471
471
t.end();
472
472
});
473
473
474
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=-1, sy=1)',functiontest(t){
474
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=2)',functiontest(t){
475
475
varexpected;
476
476
varout;
477
477
vara;
@@ -491,7 +491,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
491
491
t.end();
492
492
});
493
493
494
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=-1, sy=1)',functiontest(t){
494
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=2)',functiontest(t){
495
495
varexpected;
496
496
varout;
497
497
vara;
@@ -511,7 +511,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
511
511
t.end();
512
512
});
513
513
514
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=1, sy=-1)',functiontest(t){
514
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=2, sy=-1)',functiontest(t){
515
515
varexpected;
516
516
varout;
517
517
vara;
@@ -531,7 +531,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
531
531
t.end();
532
532
});
533
533
534
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=1, sy=-1)',functiontest(t){
534
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=-1)',functiontest(t){
535
535
varexpected;
536
536
varout;
537
537
vara;
@@ -551,7 +551,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
551
551
t.end();
552
552
});
553
553
554
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (row-major, sx=-1, sy=-1)',functiontest(t){
554
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=-1)',functiontest(t){
555
555
varexpected;
556
556
varout;
557
557
vara;
@@ -571,7 +571,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
571
571
t.end();
572
572
});
573
573
574
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` banded symmetric matrix (column-major, sx=-1, sy=-1)',functiontest(t){
574
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=-1)',functiontest(t){
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsbmv/test/test.ndarray.js
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -216,7 +216,7 @@ tape( 'the function throws an error if provided an invalid fourteenth argument',
216
216
}
217
217
});
218
218
219
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, lower)',functiontest(t){
219
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, lower)',functiontest(t){
220
220
varexpected;
221
221
varout;
222
222
vara;
@@ -236,7 +236,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
236
236
t.end();
237
237
});
238
238
239
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, lower)',functiontest(t){
239
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, lower)',functiontest(t){
240
240
varexpected;
241
241
varout;
242
242
vara;
@@ -256,7 +256,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
256
256
t.end();
257
257
});
258
258
259
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, upper)',functiontest(t){
259
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, upper)',functiontest(t){
260
260
varexpected;
261
261
varout;
262
262
vara;
@@ -276,7 +276,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
276
276
t.end();
277
277
});
278
278
279
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, upper)',functiontest(t){
279
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, upper)',functiontest(t){
280
280
varexpected;
281
281
varout;
282
282
vara;
@@ -440,7 +440,7 @@ tape( 'when `α` is zero, the function scales the second input vector (column-ma
440
440
t.end();
441
441
});
442
442
443
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, oa=1)',functiontest(t){
443
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, oa=1)',functiontest(t){
444
444
varexpected;
445
445
varout;
446
446
vara;
@@ -460,7 +460,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
460
460
t.end();
461
461
});
462
462
463
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, oa=1)',functiontest(t){
463
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, oa=1)',functiontest(t){
464
464
varexpected;
465
465
varout;
466
466
vara;
@@ -480,7 +480,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
480
480
t.end();
481
481
});
482
482
483
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=4, sa2=2)',functiontest(t){
483
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=4, sa2=2)',functiontest(t){
484
484
varexpected;
485
485
varout;
486
486
vara;
@@ -500,7 +500,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
500
500
t.end();
501
501
});
502
502
503
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=2, sa2=4)',functiontest(t){
503
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=2, sa2=4)',functiontest(t){
504
504
varexpected;
505
505
varout;
506
506
vara;
@@ -520,7 +520,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
520
520
t.end();
521
521
});
522
522
523
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=-3, sa2=2)',functiontest(t){
523
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=-3, sa2=2)',functiontest(t){
524
524
varexpected;
525
525
varout;
526
526
vara;
@@ -540,7 +540,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
540
540
t.end();
541
541
});
542
542
543
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=-2, sa2=4)',functiontest(t){
543
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=-2, sa2=4)',functiontest(t){
544
544
varexpected;
545
545
varout;
546
546
vara;
@@ -560,7 +560,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
560
560
t.end();
561
561
});
562
562
563
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=3, sa2=-2)',functiontest(t){
563
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=3, sa2=-2)',functiontest(t){
564
564
varexpected;
565
565
varout;
566
566
vara;
@@ -580,7 +580,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
580
580
t.end();
581
581
});
582
582
583
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=2, sa2=-3)',functiontest(t){
583
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=2, sa2=-3)',functiontest(t){
584
584
varexpected;
585
585
varout;
586
586
vara;
@@ -600,7 +600,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
600
600
t.end();
601
601
});
602
602
603
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sa1=-3, sa2=-2)',functiontest(t){
603
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sa1=-3, sa2=-2)',functiontest(t){
604
604
varexpected;
605
605
varout;
606
606
vara;
@@ -620,7 +620,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
620
620
t.end();
621
621
});
622
622
623
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sa1=-2, sa2=-3)',functiontest(t){
623
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sa1=-2, sa2=-3)',functiontest(t){
624
624
varexpected;
625
625
varout;
626
626
vara;
@@ -640,7 +640,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
640
640
t.end();
641
641
});
642
642
643
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=1, sy=1)',functiontest(t){
643
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=1)',functiontest(t){
644
644
varexpected;
645
645
varout;
646
646
vara;
@@ -660,7 +660,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
660
660
t.end();
661
661
});
662
662
663
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=1, sy=1)',functiontest(t){
663
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=1)',functiontest(t){
664
664
varexpected;
665
665
varout;
666
666
vara;
@@ -680,7 +680,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
680
680
t.end();
681
681
});
682
682
683
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=1, sy=-1)',functiontest(t){
683
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=-1)',functiontest(t){
684
684
varexpected;
685
685
varout;
686
686
vara;
@@ -700,7 +700,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
700
700
t.end();
701
701
});
702
702
703
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=1, sy=-1)',functiontest(t){
703
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=-1)',functiontest(t){
704
704
varexpected;
705
705
varout;
706
706
vara;
@@ -720,7 +720,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
720
720
t.end();
721
721
});
722
722
723
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=-1, sy=1)',functiontest(t){
723
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=1)',functiontest(t){
724
724
varexpected;
725
725
varout;
726
726
vara;
@@ -740,7 +740,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
740
740
t.end();
741
741
});
742
742
743
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=-1, sy=1)',functiontest(t){
743
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=1)',functiontest(t){
744
744
varexpected;
745
745
varout;
746
746
vara;
@@ -760,7 +760,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
760
760
t.end();
761
761
});
762
762
763
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (row-major, sx=-1, sy=-1)',functiontest(t){
763
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=-1)',functiontest(t){
764
764
varexpected;
765
765
varout;
766
766
vara;
@@ -780,7 +780,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` whe
780
780
t.end();
781
781
});
782
782
783
-
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `n` element vectors, and `A` is an `n` by `n` banded symmetric matrix (column-major, sx=-1, sy=-1)',functiontest(t){
783
+
tape('the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=-1)',functiontest(t){
0 commit comments