Skip to content

Commit c2eaf9e

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 703782f commit c2eaf9e

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dgemv/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dgemv/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int main( void ) {
4444
printf( "y[ %i ] = %lf\n", i, y[ i ] );
4545
}
4646

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

5050
// Print the result:

0 commit comments

Comments
 (0)