From ce0ecbec1cf56aecd418d3e863fae94f92ce5440 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 9 Jun 2024 00:01:36 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 3 ++- base/dscal/README.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 752f45d0b..9e4b16f95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-06-08) +## Unreleased (2024-06-09)
@@ -1415,6 +1415,7 @@ A total of 35 people contributed to this release. Thank you to the following con
+- [`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)_ diff --git a/base/dscal/README.md b/base/dscal/README.md index bee320acb..22fca0d72 100644 --- a/base/dscal/README.md +++ b/base/dscal/README.md @@ -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 ); ```