Skip to content

Commit 15f4a28

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 93409ab commit 15f4a28

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main( void ) {
3636
printf( "A[ %i ] = %f\n", i, A[ i ] );
3737
}
3838

39-
// Perform the symmetric rank 1 operation `A = α*x*x^T + A`:
39+
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative semantics indexing:
4040
c_dsyr_ndarray( CblasUpper, N, 1.0, x, 1, 0, A, N, 1, 0 );
4141

4242
// Print the result:

0 commit comments

Comments
 (0)