Skip to content

Commit 1921795

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 6a74265 commit 1921795

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/base/cgemv/lib

lib/node_modules/@stdlib/blas/base/cgemv/lib/base.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function cgemv( trans, M, N, alpha, A, strideA1, strideA2, offsetA, x, strideX,
135135
xlen = N;
136136
ylen = M;
137137
}
138-
// Decompose scalars
138+
// Decompose scalars into real and imaginary components:
139139
rebeta = realf( beta );
140140
imbeta = imagf( beta );
141141
realpha = realf( alpha );
@@ -150,7 +150,7 @@ function cgemv( trans, M, N, alpha, A, strideA1, strideA2, offsetA, x, strideX,
150150
if ( realpha === 0.0 && imalpha === 0.0 ) {
151151
return y;
152152
}
153-
// Reinterpret arrays to real-valued views
153+
// Reinterpret arrays to real-valued views:
154154
viewA = reinterpret( A, 0 );
155155
viewX = reinterpret( x, 0 );
156156
viewY = reinterpret( y, 0 );

0 commit comments

Comments
 (0)