Skip to content

Commit daf7633

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 229c7bc commit daf7633

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/dgemv

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ void c_dgemv( const CBLAS_LAYOUT order, const CBLAS_TRANSPOSE trans, const CBLAS
236236

237237
#### c_dgemv_ndarray( trans, M, N, alpha, \*A, strideA1, strideA2, offsetA, \*X, strideX, offsetX, beta, \*Y, strideY, offsetY )
238238

239-
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 using indexing alternative semantics.
239+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using indexing alternative semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
240240

241241
```c
242242
#include "stdlib/blas/base/shared.h"
@@ -317,7 +317,7 @@ int main( void ) {
317317
printf( "y[ %i ] = %lf\n", i, y[ i ] );
318318
}
319319

320-
// Perform the matrix-vector operation `y = α*A*x + β*y`:
320+
// Perform the matrix-vector operation `y = α*A*x + β*y` using indexing alternative semantics:
321321
c_dgemv_ndarray( CblasNoTrans, 3, 3, 1.0, A, 3, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
322322

323323
// Print the result:

0 commit comments

Comments
 (0)