We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90c0dcd commit 082d521Copy full SHA for 082d521
lib/node_modules/@stdlib/blas/base/zdscal/examples/c/example.c
@@ -23,7 +23,6 @@
23
#include <stdio.h>
24
25
int main( void ) {
26
- // Create strided arrays:
27
stdlib_complex128_t x[] = {
28
stdlib_complex128( 1.0, 2.0 ),
29
stdlib_complex128( 3.0, 4.0 ),
@@ -34,7 +33,7 @@ int main( void ) {
34
33
// Specify the number of elements:
35
const int N = 4;
36
37
- // Specify stride lengths:
+ // Specify the stride length:
38
const int strideX = 1;
39
40
c_zdscal( N, 2.0, (void *)x, strideX );
0 commit comments