Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 9, 2024
1 parent 0d1520b commit ce0ecbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-06-08)
## Unreleased (2024-06-09)

<section class="packages">

Expand Down Expand Up @@ -1415,6 +1415,7 @@ A total of 35 people contributed to this release. Thank you to the following con

<details>

- [`aea56c1`](https://github.com/stdlib-js/stdlib/commit/aea56c1678b74530f651680c18ba28ff0f90f2d9) - **docs:** fix signature _(by Athan Reines)_
- [`b40f5c3`](https://github.com/stdlib-js/stdlib/commit/b40f5c33aaf2113c73f8f0811c8d1cdc9fbfde53) - **feat:** add `blas/base/cscal` [(#2104)](https://github.com/stdlib-js/stdlib/pull/2104) _(by Aman Bhansali, Athan Reines)_
- [`a4748fb`](https://github.com/stdlib-js/stdlib/commit/a4748fb7a658f89c268388389355ed87b5a06f84) - **feat:** add `blas/base/dcabs1` [(#2204)](https://github.com/stdlib-js/stdlib/pull/2204) _(by Aman Bhansali, Athan Reines)_
- [`70864fa`](https://github.com/stdlib-js/stdlib/commit/70864faabdacdb25caa2a7ee75bd0fcc7ba478c9) - **feat:** add `blas/base/scabs1` [(#2209)](https://github.com/stdlib-js/stdlib/pull/2209) _(by Aman Bhansali, Athan Reines)_
Expand Down
4 changes: 2 additions & 2 deletions base/dscal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@ console.log( x );
#include "stdlib/blas/base/dscal.h"
```

#### c_dscal( N, \*X, stride )
#### c_dscal( N, alpha, \*X, stride )

Multiplies each element of a double-precision floating-point vector by a constant.

```c
const double x[] = { 1.0, 2.0, 3.0, 4.0 };
double x[] = { 1.0, 2.0, 3.0, 4.0 };

c_dscal( 4, 5.0, x, 1 );
```
Expand Down

0 comments on commit ce0ecbe

Please sign in to comment.