Skip to content

Commit

Permalink
docs: fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Sep 17, 2024
1 parent 040a335 commit 11889ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/daxpy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Multiplies a vector `X` by a constant and adds the result to `Y` using alternati
const double x[] = { 1.0, 2.0, 3.0, 4.0 };
double y[] = { 0.0, 0.0, 0.0, 0.0 };

c_daxpy( 4, 5.0, x, 1, 0, y, 1, 0 );
c_daxpy_ndarray( 4, 5.0, x, 1, 0, y, 1, 0 );
```
The function accepts the following arguments:
Expand Down

1 comment on commit 11889ca

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
blas/base/daxpy $\color{green}420/420$
$\color{green}+100.00\%$
$\color{green}30/30$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}420/420$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.