Skip to content

Commit 6bd1361

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 99586e8 commit 6bd1361

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
int main( void ) {
2424
// Create a strided array:
25-
const double A[] = { 1.0, 0.0f, 0.0f, 2.0f, 1.0, 0.0f, 3.0f, 2.0f, 1.0 };
26-
const double x[] = { 1.0, 2.0f, 3.0f };
27-
double y[] = { 1.0, 2.0f, 3.0f };
25+
const double A[] = { 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0, 2.0, 1.0 };
26+
const double x[] = { 1.0, 2.0, 3.0 };
27+
double y[] = { 1.0, 2.0, 3.0 };
2828

2929
// Specify the number of elements along each dimension of `A`:
3030
const int M = 3;

0 commit comments

Comments
 (0)