Skip to content

Commit 2f134a6

Browse files
committed
feat: add passb2
1 parent 7479095 commit 2f134a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/fft/base/fftpack/lib/c1_ref.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
* @param {number} ido - Dimension order.
7272
* @returns {number} - Calculated index.
7373
*/
74-
function c1Ref ( a1, a2, a3, l1, ido ) {
74+
function c1Ref( a1, a2, a3, l1, ido ) {
7575
return ( ( ( a3 * l1 ) + a2 ) * ido ) + a1;
7676
}
7777

lib/node_modules/@stdlib/fft/base/fftpack/lib/c2_ref.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* @param {number} idl1 - Stride related to the `l1` parameter.
7171
* @returns {number} - Calculated index.
7272
*/
73-
function c2Ref ( a1, a2, idl1 ) {
73+
function c2Ref( a1, a2, idl1 ) {
7474
return ( a2 * idl1 ) + a1;
7575
}
7676

0 commit comments

Comments
 (0)