Skip to content

Commit 6c3bfbd

Browse files
committed
docs: update description
1 parent 2defe83 commit 6c3bfbd

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/sgemv

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/sgemv/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# sgemv
2222

23-
> Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`.
23+
> Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.
2424
2525
<section class = "usage">
2626

@@ -32,7 +32,7 @@ var sgemv = require( '@stdlib/blas/base/sgemv' );
3232

3333
#### sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )
3434

35-
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
35+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
3636

3737
```javascript
3838
var Float32Array = require( '@stdlib/array/float32' );
@@ -95,7 +95,7 @@ sgemv( 'row-major', 'no-transpose', 2, 2, 1.0, A, 2, x1, -1, 1.0, y1, -1 );
9595

9696
#### sgemv.ndarray( trans, M, N, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )
9797

98-
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
98+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
9999

100100
```javascript
101101
var Float32Array = require( '@stdlib/array/float32' );

0 commit comments

Comments
 (0)