File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ This release closes the following issue:
34
34
35
35
<details >
36
36
37
+ - [ ` b228bf3 ` ] ( https://github.com/stdlib-js/stdlib/commit/b228bf31d96eacac782648edf8c29141d094a59b ) - ** docs:** update comments _ (by Athan Reines)_
37
38
- [ ` 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)_
38
39
- [ ` a1e230f ` ] ( https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc ) - ** chore:** clean up cppcheck-suppress comments _ (by Karan Anand)_
39
40
- [ ` 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' );
166
166
var z1 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) );
167
167
var z2 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) );
168
168
169
- // Perform multiplication on each element of arrays :
169
+ // Perform element-wise multiplication :
170
170
logEachMap ( ' (%s) * (%s) = %s' , z1, z2, mul );
171
171
```
172
172
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ var mul = require( './../lib' );
27
27
var z1 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) ) ;
28
28
var z2 = new Complex64Array ( discreteUniform ( 200 , - 50 , 50 ) ) ;
29
29
30
- // Scale each by a scalar constant :
30
+ // Perform element-wise multiplication :
31
31
logEachMap ( '(%s) * (%s) = %s' , z1 , z2 , mul ) ;
You can’t perform that action at this time.
0 commit comments