Skip to content

Commit cba0e7f

Browse files
committed
docs: update repl text
--- 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: passed - task: lint_javascript_src status: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9ca9dbf commit cba0e7f

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

  • lib/node_modules/@stdlib/fft/base/fftpack/rffti/docs

lib/node_modules/@stdlib/fft/base/fftpack/rffti/docs/repl.txt

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33
Initializes a workspace array for performing a real-valued Fourier
44
transform.
55

6-
The workspace array is divided into three sections: scratch/workspace
7-
(indices 0 to N-1), twiddle factors (indices N to 2N-1), and radix factor
8-
table (indices 2N onwards).
9-
10-
The scratch/workspace section is used while performing transforms and is
11-
not updated during initialization. The twiddle factors section stores a
12-
table of reusable complex exponential constants as cosine/sine pairs. The
13-
radix factor table stores the sequence length N, the number of factors into
14-
which N was decomposed, and the individual integer radix factors.
6+
The workspace array is divided into three sections:
7+
8+
1. scratch/workspace: the section ranges from indices 0 to N-1 and is used
9+
while performing transforms. This section is not updated during
10+
initialization.
11+
12+
2. twiddle factors: the section ranges from indices N to 2N-1 and stores a
13+
table of reusable complex exponential constants as cosine/sine pairs.
14+
15+
3. radix factor table: the section starts at index 2N and stores the
16+
sequence length N, the number of factors into which N was decomposed,
17+
and the individual integer radix factors.
1518

1619
Any remaining array space remains as unused storage.
1720

0 commit comments

Comments
 (0)