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/strmv/test/test.ndarray.js
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -251,7 +251,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func
251
251
}
252
252
});
253
253
254
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, no transpose, non-unit)',functiontest(t){
254
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, no transpose, non-unit)',functiontest(t){
255
255
varexpected;
256
256
vardata;
257
257
varout;
@@ -272,7 +272,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
272
272
t.end();
273
273
});
274
274
275
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, no transpose, non-unit)',functiontest(t){
275
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, no transpose, non-unit)',functiontest(t){
276
276
varexpected;
277
277
vardata;
278
278
varout;
@@ -293,7 +293,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
293
293
t.end();
294
294
});
295
295
296
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, non-unit)',functiontest(t){
296
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, transpose, non-unit)',functiontest(t){
297
297
varexpected;
298
298
vardata;
299
299
varout;
@@ -314,7 +314,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
314
314
t.end();
315
315
});
316
316
317
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, non-unit)',functiontest(t){
317
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, transpose, non-unit)',functiontest(t){
318
318
varexpected;
319
319
vardata;
320
320
varout;
@@ -335,7 +335,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
335
335
t.end();
336
336
});
337
337
338
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, no transpose, unit)',functiontest(t){
338
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, no transpose, unit)',functiontest(t){
339
339
varexpected;
340
340
vardata;
341
341
varout;
@@ -356,7 +356,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
356
356
t.end();
357
357
});
358
358
359
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, no transpose, unit)',functiontest(t){
359
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, no transpose, unit)',functiontest(t){
360
360
varexpected;
361
361
vardata;
362
362
varout;
@@ -377,7 +377,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
377
377
t.end();
378
378
});
379
379
380
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, unit)',functiontest(t){
380
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, transpose, unit)',functiontest(t){
381
381
varexpected;
382
382
vardata;
383
383
varout;
@@ -398,7 +398,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
398
398
t.end();
399
399
});
400
400
401
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, unit)',functiontest(t){
401
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, transpose, unit)',functiontest(t){
402
402
varexpected;
403
403
vardata;
404
404
varout;
@@ -419,7 +419,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
419
419
t.end();
420
420
});
421
421
422
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, no transpose, non-unit)',functiontest(t){
422
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, no transpose, non-unit)',functiontest(t){
423
423
varexpected;
424
424
vardata;
425
425
varout;
@@ -440,7 +440,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
440
440
t.end();
441
441
});
442
442
443
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, no transpose, non-unit)',functiontest(t){
443
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, no transpose, non-unit)',functiontest(t){
444
444
varexpected;
445
445
vardata;
446
446
varout;
@@ -461,7 +461,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
461
461
t.end();
462
462
});
463
463
464
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, no transpose, unit)',functiontest(t){
464
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, no transpose, unit)',functiontest(t){
465
465
varexpected;
466
466
vardata;
467
467
varout;
@@ -482,7 +482,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
482
482
t.end();
483
483
});
484
484
485
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, no transpose, unit)',functiontest(t){
485
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, no transpose, unit)',functiontest(t){
486
486
varexpected;
487
487
vardata;
488
488
varout;
@@ -503,7 +503,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
503
503
t.end();
504
504
});
505
505
506
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, non-unit)',functiontest(t){
506
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, transpose, non-unit)',functiontest(t){
507
507
varexpected;
508
508
vardata;
509
509
varout;
@@ -524,7 +524,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
524
524
t.end();
525
525
});
526
526
527
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, non-unit)',functiontest(t){
527
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, transpose, non-unit)',functiontest(t){
528
528
varexpected;
529
529
vardata;
530
530
varout;
@@ -545,7 +545,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
545
545
t.end();
546
546
});
547
547
548
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, unit)',functiontest(t){
548
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, transpose, unit)',functiontest(t){
549
549
varexpected;
550
550
vardata;
551
551
varout;
@@ -566,7 +566,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
566
566
t.end();
567
567
});
568
568
569
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, unit)',functiontest(t){
569
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, transpose, unit)',functiontest(t){
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/strmv/test/test.strmv.js
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -245,7 +245,7 @@ tape( 'the function throws an error if provided an invalid ninth argument', func
245
245
}
246
246
});
247
247
248
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, no transpose, non-unit)',functiontest(t){
248
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, no transpose, non-unit)',functiontest(t){
249
249
varexpected;
250
250
vardata;
251
251
varout;
@@ -266,7 +266,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
266
266
t.end();
267
267
});
268
268
269
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, no transpose, non-unit)',functiontest(t){
269
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, no transpose, non-unit)',functiontest(t){
270
270
varexpected;
271
271
vardata;
272
272
varout;
@@ -287,7 +287,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
287
287
t.end();
288
288
});
289
289
290
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, non-unit)',functiontest(t){
290
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, transpose, non-unit)',functiontest(t){
291
291
varexpected;
292
292
vardata;
293
293
varout;
@@ -308,7 +308,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
308
308
t.end();
309
309
});
310
310
311
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, non-unit)',functiontest(t){
311
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, transpose, non-unit)',functiontest(t){
312
312
varexpected;
313
313
vardata;
314
314
varout;
@@ -329,7 +329,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
329
329
t.end();
330
330
});
331
331
332
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, no transpose, unit)',functiontest(t){
332
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, no transpose, unit)',functiontest(t){
333
333
varexpected;
334
334
vardata;
335
335
varout;
@@ -350,7 +350,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
350
350
t.end();
351
351
});
352
352
353
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, no transpose, unit)',functiontest(t){
353
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, no transpose, unit)',functiontest(t){
354
354
varexpected;
355
355
vardata;
356
356
varout;
@@ -371,7 +371,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
371
371
t.end();
372
372
});
373
373
374
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, unit)',functiontest(t){
374
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, lower, transpose, unit)',functiontest(t){
375
375
varexpected;
376
376
vardata;
377
377
varout;
@@ -392,7 +392,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
392
392
t.end();
393
393
});
394
394
395
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, unit)',functiontest(t){
395
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, lower, transpose, unit)',functiontest(t){
396
396
varexpected;
397
397
vardata;
398
398
varout;
@@ -413,7 +413,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
413
413
t.end();
414
414
});
415
415
416
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, no transpose, non-unit)',functiontest(t){
416
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, no transpose, non-unit)',functiontest(t){
417
417
varexpected;
418
418
vardata;
419
419
varout;
@@ -434,7 +434,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
434
434
t.end();
435
435
});
436
436
437
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, no transpose, non-unit)',functiontest(t){
437
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, no transpose, non-unit)',functiontest(t){
438
438
varexpected;
439
439
vardata;
440
440
varout;
@@ -455,7 +455,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
455
455
t.end();
456
456
});
457
457
458
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, no transpose, unit)',functiontest(t){
458
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, no transpose, unit)',functiontest(t){
459
459
varexpected;
460
460
vardata;
461
461
varout;
@@ -476,7 +476,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
476
476
t.end();
477
477
});
478
478
479
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, no transpose, unit)',functiontest(t){
479
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, no transpose, unit)',functiontest(t){
480
480
varexpected;
481
481
vardata;
482
482
varout;
@@ -497,7 +497,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
497
497
t.end();
498
498
});
499
499
500
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, non-unit)',functiontest(t){
500
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, transpose, non-unit)',functiontest(t){
501
501
varexpected;
502
502
vardata;
503
503
varout;
@@ -518,7 +518,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
518
518
t.end();
519
519
});
520
520
521
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, non-unit)',functiontest(t){
521
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, transpose, non-unit)',functiontest(t){
522
522
varexpected;
523
523
vardata;
524
524
varout;
@@ -539,7 +539,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
539
539
t.end();
540
540
});
541
541
542
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, unit)',functiontest(t){
542
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (row-major, upper, transpose, unit)',functiontest(t){
543
543
varexpected;
544
544
vardata;
545
545
varout;
@@ -560,7 +560,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
560
560
t.end();
561
561
});
562
562
563
-
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, unit)',functiontest(t){
563
+
tape('the function performs one of the matrix-vector operations `x = A*x` or `x = A^T*x` (column-major, upper, transpose, unit)',functiontest(t){
0 commit comments