File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ This release closes the following issue:
3434
3535<details >
3636
37+ - [ ` b228bf3 ` ] ( https://github.com/stdlib-js/stdlib/commit/b228bf31d96eacac782648edf8c29141d094a59b ) - ** docs:** update comments _ (by Athan Reines)_
3738- [ ` 3b08499 ` ] ( https://github.com/stdlib-js/stdlib/commit/3b08499dcdae21f946e61da757c0c21da2e8f9ed ) - ** docs:** change package naming and examples for ` complex/float32/base/mul ` [ (#7167 )] ( https://github.com/stdlib-js/stdlib/pull/7167 ) _ (by Shabareesh Shetty)_
3839- [ ` a1e230f ` ] ( https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc ) - ** chore:** clean up cppcheck-suppress comments _ (by Karan Anand)_
3940- [ ` 89ecfe0 ` ] ( https://github.com/stdlib-js/stdlib/commit/89ecfe0212aef0448017f8e404a3862fda851170 ) - ** refactor:** update paths _ (by Gururaj Gurram)_
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ var mul = require( '@stdlib/complex-float32-base-mul' );
166166var z1 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) );
167167var z2 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) );
168168
169- // Perform multiplication on each element of arrays :
169+ // Perform element-wise multiplication :
170170logEachMap ( ' (%s) * (%s) = %s' , z1, z2, mul );
171171```
172172
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ var mul = require( './../lib' );
2727var z1 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) ) ;
2828var z2 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) ) ;
2929
30- // Scale each by a scalar constant :
30+ // Perform element-wise multiplication :
3131logEachMap ( '(%s) * (%s) = %s' , z1 , z2 , mul ) ;
You can’t perform that action at this time.
0 commit comments