Skip to content

Commit 47a6d6f

Browse files
authored
style: move comments
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 7be8297 commit 47a6d6f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/gvander/lib

lib/node_modules/@stdlib/blas/ext/base/gvander/lib/accessors.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ function gvander( mode, M, N, x, sx, ox, out, so1, so2, oo ) {
9090
S1 = M;
9191
do0 = so2;
9292
do1 = so1 - ( S0*so2 );
93+
94+
// Increasing: x^0, x^1, ..., x^(N-1)
9395
if ( mode > 0 ) {
94-
// Increasing: x^0, x^1, ..., x^(N-1)
9596
io = oo;
9697
ix = ox;
9798
for ( i1 = 0; i1 < S1; i1++ ) {
@@ -132,8 +133,9 @@ function gvander( mode, M, N, x, sx, ox, out, so1, so2, oo ) {
132133
S1 = N;
133134
do0 = so1;
134135
do1 = so2 - ( S0*so1 );
136+
137+
// Increasing: column j contains x^j
135138
if ( mode > 0 ) {
136-
// Increasing: column j contains x^j
137139
io = oo;
138140
gfill( S0, 1.0, obuf, do0, io );
139141
io += so2;

0 commit comments

Comments
 (0)