Skip to content

Commit 11889ca

Browse files
committed
docs: fix example
1 parent 040a335 commit 11889ca

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/daxpy

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/daxpy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Multiplies a vector `X` by a constant and adds the result to `Y` using alternati
221221
const double x[] = { 1.0, 2.0, 3.0, 4.0 };
222222
double y[] = { 0.0, 0.0, 0.0, 0.0 };
223223

224-
c_daxpy( 4, 5.0, x, 1, 0, y, 1, 0 );
224+
c_daxpy_ndarray( 4, 5.0, x, 1, 0, y, 1, 0 );
225225
```
226226
227227
The function accepts the following arguments:

0 commit comments

Comments
 (0)