Skip to content

Commit b602856

Browse files
committed
docs: add repl
1 parent c323438 commit b602856

File tree

1 file changed

+34
-0
lines changed
  • lib/node_modules/@stdlib/fft/base/fftpack/rffti/docs

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
{{alias}}( N, workspace, strideW, offsetW )
3+
Initializes a workspace array for performing a real-valued
4+
Fourier transform.
5+
6+
Parameters
7+
----------
8+
N: integer
9+
Length of the sequence to transform.
10+
11+
workspace: Float64Array
12+
Workspace array.
13+
14+
strideW: integer
15+
Stride length for `workspace`.
16+
17+
offsetW: integer
18+
Starting index for `workspace`.
19+
20+
Returns
21+
-------
22+
void
23+
24+
Examples
25+
--------
26+
> var N = 8;
27+
> var workspace = new {{alias:@stdlib/array/float64}}( (2*N) + 34 );
28+
> {{alias}}( N, workspace, 1, 0 );
29+
> workspace.slice();
30+
<Float64Array>[ 0, ... 0, 0.7071067811865476, 0.7071067811865475, 0, ... 0, 8, 2, 2, 4, 0, ... 0 ]
31+
32+
See Also
33+
--------
34+

0 commit comments

Comments
 (0)