Skip to content

Commit 295ec84

Browse files
committed
docs: update descriptions
--- 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: na - 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: passed - 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 ---
1 parent 159a7bd commit 295ec84

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

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

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

22
{{alias}}( ord, uplo, trans, diag, N, A, lda, x, sx )
3-
Performs one of the matrix-vector operations `x = A*x` or `x = A**T*x`,
3+
Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`,
44
where `x` is an `N` element vector and `A` is an `N` by `N` unit, or
55
non-unit, upper or lower triangular matrix.
66

@@ -55,7 +55,7 @@
5555

5656

5757
{{alias}}.ndarray( uplo, trans, diag, N, A, sa1, sa2, oa, x, sx, ox )
58-
Performs one of the matrix-vector operations `x = A*x` or `x = A**T*x`,
58+
Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`,
5959
using alternative indexing semantics and where `x` is an `N` element vector
6060
and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular
6161
matrix.

lib/node_modules/@stdlib/blas/base/strmv/test/test.ndarray.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func
251251
}
252252
});
253253

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)', function test( 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)', function test( t ) {
255255
var expected;
256256
var data;
257257
var out;
@@ -272,7 +272,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
272272
t.end();
273273
});
274274

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)', function test( 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)', function test( t ) {
276276
var expected;
277277
var data;
278278
var out;
@@ -293,7 +293,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
293293
t.end();
294294
});
295295

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)', function test( 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)', function test( t ) {
297297
var expected;
298298
var data;
299299
var out;
@@ -314,7 +314,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
314314
t.end();
315315
});
316316

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)', function test( 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)', function test( t ) {
318318
var expected;
319319
var data;
320320
var out;
@@ -335,7 +335,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
335335
t.end();
336336
});
337337

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)', function test( 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)', function test( t ) {
339339
var expected;
340340
var data;
341341
var out;
@@ -356,7 +356,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
356356
t.end();
357357
});
358358

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)', function test( 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)', function test( t ) {
360360
var expected;
361361
var data;
362362
var out;
@@ -377,7 +377,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
377377
t.end();
378378
});
379379

380-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, unit)', function test( 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)', function test( t ) {
381381
var expected;
382382
var data;
383383
var out;
@@ -398,7 +398,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
398398
t.end();
399399
});
400400

401-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, unit)', function test( 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)', function test( t ) {
402402
var expected;
403403
var data;
404404
var out;
@@ -419,7 +419,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
419419
t.end();
420420
});
421421

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)', function test( 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)', function test( t ) {
423423
var expected;
424424
var data;
425425
var out;
@@ -440,7 +440,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
440440
t.end();
441441
});
442442

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)', function test( 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)', function test( t ) {
444444
var expected;
445445
var data;
446446
var out;
@@ -461,7 +461,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
461461
t.end();
462462
});
463463

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)', function test( 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)', function test( t ) {
465465
var expected;
466466
var data;
467467
var out;
@@ -482,7 +482,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
482482
t.end();
483483
});
484484

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)', function test( 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)', function test( t ) {
486486
var expected;
487487
var data;
488488
var out;
@@ -503,7 +503,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
503503
t.end();
504504
});
505505

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)', function test( 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)', function test( t ) {
507507
var expected;
508508
var data;
509509
var out;
@@ -524,7 +524,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
524524
t.end();
525525
});
526526

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)', function test( 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)', function test( t ) {
528528
var expected;
529529
var data;
530530
var out;
@@ -545,7 +545,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
545545
t.end();
546546
});
547547

548-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, unit)', function test( 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)', function test( t ) {
549549
var expected;
550550
var data;
551551
var out;
@@ -566,7 +566,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
566566
t.end();
567567
});
568568

569-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, unit)', function test( 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)', function test( t ) {
570570
var expected;
571571
var data;
572572
var out;

lib/node_modules/@stdlib/blas/base/strmv/test/test.strmv.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ tape( 'the function throws an error if provided an invalid ninth argument', func
245245
}
246246
});
247247

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)', function test( 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)', function test( t ) {
249249
var expected;
250250
var data;
251251
var out;
@@ -266,7 +266,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
266266
t.end();
267267
});
268268

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)', function test( 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)', function test( t ) {
270270
var expected;
271271
var data;
272272
var out;
@@ -287,7 +287,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
287287
t.end();
288288
});
289289

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)', function test( 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)', function test( t ) {
291291
var expected;
292292
var data;
293293
var out;
@@ -308,7 +308,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
308308
t.end();
309309
});
310310

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)', function test( 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)', function test( t ) {
312312
var expected;
313313
var data;
314314
var out;
@@ -329,7 +329,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
329329
t.end();
330330
});
331331

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)', function test( 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)', function test( t ) {
333333
var expected;
334334
var data;
335335
var out;
@@ -350,7 +350,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
350350
t.end();
351351
});
352352

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)', function test( 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)', function test( t ) {
354354
var expected;
355355
var data;
356356
var out;
@@ -371,7 +371,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
371371
t.end();
372372
});
373373

374-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, lower, transpose, unit)', function test( 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)', function test( t ) {
375375
var expected;
376376
var data;
377377
var out;
@@ -392,7 +392,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
392392
t.end();
393393
});
394394

395-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, lower, transpose, unit)', function test( 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)', function test( t ) {
396396
var expected;
397397
var data;
398398
var out;
@@ -413,7 +413,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
413413
t.end();
414414
});
415415

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)', function test( 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)', function test( t ) {
417417
var expected;
418418
var data;
419419
var out;
@@ -434,7 +434,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
434434
t.end();
435435
});
436436

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)', function test( 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)', function test( t ) {
438438
var expected;
439439
var data;
440440
var out;
@@ -455,7 +455,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
455455
t.end();
456456
});
457457

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)', function test( 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)', function test( t ) {
459459
var expected;
460460
var data;
461461
var out;
@@ -476,7 +476,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
476476
t.end();
477477
});
478478

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)', function test( 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)', function test( t ) {
480480
var expected;
481481
var data;
482482
var out;
@@ -497,7 +497,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
497497
t.end();
498498
});
499499

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)', function test( 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)', function test( t ) {
501501
var expected;
502502
var data;
503503
var out;
@@ -518,7 +518,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
518518
t.end();
519519
});
520520

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)', function test( 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)', function test( t ) {
522522
var expected;
523523
var data;
524524
var out;
@@ -539,7 +539,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
539539
t.end();
540540
});
541541

542-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (row-major, upper, transpose, unit)', function test( 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)', function test( t ) {
543543
var expected;
544544
var data;
545545
var out;
@@ -560,7 +560,7 @@ tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x
560560
t.end();
561561
});
562562

563-
tape( 'the function performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` (column-major, upper, transpose, unit)', function test( 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)', function test( t ) {
564564
var expected;
565565
var data;
566566
var out;

0 commit comments

Comments
 (0)