Skip to content

Commit de91a9f

Browse files
committed
docs: update docs and formatting
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent df9be71 commit de91a9f

File tree

5 files changed

+36
-36
lines changed

5 files changed

+36
-36
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@
6161
// MAIN //
6262

6363
/**
64-
* Performs a pass of the FFT algorithm.
64+
* Computes an index into the intermediate array `c1`.
6565
*
6666
* @private
67-
* @param {number} a1 - index of first dimension
68-
* @param {number} a2 - index of second dimension
69-
* @param {number} a3 - index of third dimension
70-
* @param {number} l1 - length parameter related to the FFT stage
71-
* @param {number} ido - dimension order
72-
* @returns {number} - calculated index
67+
* @param {NonNegativeInteger} a1 - index of first dimension
68+
* @param {NonNegativeInteger} a2 - index of second dimension
69+
* @param {NonNegativeInteger} a3 - index of third dimension
70+
* @param {NonNegativeInteger} l1 - length parameter related to the FFT stage
71+
* @param {NonNegativeInteger} ido - dimension order
72+
* @returns {NonNegativeInteger} computed index
7373
*/
7474
function c1Ref( a1, a2, a3, l1, ido ) {
75-
return ( ( ( a3 * l1 ) + a2 ) * ido ) + a1;
75+
return ( ( (a3*l1)+a2 ) * ido ) + a1;
7676
}
7777

7878

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@
6161
// MAIN //
6262

6363
/**
64-
* Performs a pass of the FFT algorithm.
64+
* Computes an index into the intermediate array `c2`.
6565
*
6666
* @private
67-
* @param {number} a1 - index of first dimension
68-
* @param {number} a2 - index of second dimension
69-
* @param {number} idl1 - stride related to the `l1` parameter
70-
* @returns {number} - calculated index
67+
* @param {NonNegativeInteger} a1 - index of first dimension
68+
* @param {NonNegativeInteger} a2 - index of second dimension
69+
* @param {integer} idl1 - stride related to the `l1` parameter
70+
* @returns {NonNegativeInteger} computed index
7171
*/
7272
function c2Ref( a1, a2, idl1 ) {
73-
return ( a2 * idl1 ) + a1;
73+
return ( a2*idl1 ) + a1;
7474
}
7575

7676

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@
6161
// MAIN //
6262

6363
/**
64-
* Performs a pass of the FFT algorithm.
64+
* Computes an index into an input array `cc` containing complex-valued data.
6565
*
6666
* @private
67-
* @param {number} a1 - index of first dimension
68-
* @param {number} a2 - index of second dimension
69-
* @param {number} a3 - index of third dimension
70-
* @param {number} ip - number of sub-steps or prime factors in the FFT
71-
* @param {number} ido - dimension order
72-
* @returns {number} - calculated index
67+
* @param {NonNegativeInteger} a1 - index of first dimension
68+
* @param {NonNegativeInteger} a2 - index of second dimension
69+
* @param {NonNegativeInteger} a3 - index of third dimension
70+
* @param {NonNegativeInteger} ip - number of sub-steps or prime factors in the FFT
71+
* @param {NonNegativeInteger} ido - dimension order
72+
* @returns {NonNegativeInteger} computed index
7373
*/
7474
function ccRef( a1, a2, a3, ip, ido ) {
75-
return ( ( ( a3 * ip ) + a2 ) * ido ) + a1;
75+
return ( ( (a3*ip)+a2 ) * ido ) + a1;
7676
}
7777

7878

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@
6161
// MAIN //
6262

6363
/**
64-
* Performs a pass of the FFT algorithm.
64+
* Computes an index into an output array `ch2` for storing processed FFT data.
6565
*
6666
* @private
67-
* @param {number} a1 - index of first dimension
68-
* @param {number} a2 - index of second dimension
69-
* @param {number} idl1 - stride related to the `l1` parameter
70-
* @returns {number} - calculated index
67+
* @param {NonNegativeInteger} a1 - index of first dimension
68+
* @param {NonNegativeInteger} a2 - index of second dimension
69+
* @param {integer} idl1 - stride related to the `l1` parameter
70+
* @returns {NonNegativeInteger} computed index
7171
*/
7272
function ch2Ref( a1, a2, idl1 ) {
73-
return ( a2 * idl1 ) + a1;
73+
return ( a2*idl1 ) + a1;
7474
}
7575

7676

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@
6161
// MAIN //
6262

6363
/**
64-
* Performs a pass of the FFT algorithm.
64+
* Computes an index into an output array `ch` for storing processed FFT data.
6565
*
6666
* @private
67-
* @param {number} a1 - index of first dimension
68-
* @param {number} a2 - index of second dimension
69-
* @param {number} a3 - index of third dimension
70-
* @param {number} l1 - length parameter related to the FFT stage
71-
* @param {number} ido - dimension order
72-
* @returns {number} - calculated index
67+
* @param {NonNegativeInteger} a1 - index of first dimension
68+
* @param {NonNegativeInteger} a2 - index of second dimension
69+
* @param {NonNegativeInteger} a3 - index of third dimension
70+
* @param {NonNegativeInteger} l1 - length parameter related to the FFT stage
71+
* @param {NonNegativeInteger} ido - dimension order
72+
* @returns {NonNegativeInteger} - calculated index
7373
*/
7474
function chRef( a1, a2, a3, l1, ido ) {
75-
return ( ( ( a3 * l1 ) + a2 ) * ido ) + a1;
75+
return ( ( (a3*l1)+a2 ) * ido ) + a1;
7676
}
7777

7878

0 commit comments

Comments
 (0)