You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/specs/fftpack.md
+25-13Lines changed: 25 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,14 +59,12 @@ end program demo_zffti
59
59
60
60
### Description
61
61
62
-
Computes the forward complex discrete fourier
63
-
transform (the fourier analysis).
64
-
Equivalently, `zfftf` computes
65
-
the fourier coefficients of a complex periodic sequence.
66
-
the transform is defined below at output parameter `c`.
62
+
Computes the forward complex discrete fourier transform (the fourier analysis).
63
+
Equivalently, `zfftf` computes the fourier coefficients of a complex periodic sequence.
64
+
The transform is defined below at output parameter `c`.
67
65
68
-
The transform is not normalized. to obtain a normalized transform
69
-
the output must be divided by `n`. otherwise a call of `zfftf`
66
+
The transform is not normalized. To obtain a normalized transform
67
+
the output must be divided by `n`. Otherwise a call of `zfftf`
70
68
followed by a call of `zfftb` will multiply the sequence by `n`.
71
69
72
70
The array `wsave` which is used by subroutine `zfftf` must be
@@ -105,7 +103,10 @@ for j=1,...,n
105
103
106
104
`wsave`: Shall be a `real` array.
107
105
This argument is `intent(inout)`.
108
-
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `zfftf`. The wsave array must be initialized by calling subroutine `zffti(n,wsave)` and a different wsave array must be used for each different value of `n`. This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first. The same wsave array can be used by `zfftf` and `zfftb`.
106
+
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `zfftf`.
107
+
The wsave array must be initialized by calling subroutine `zffti(n,wsave)` and a different `wsave` array must be used for each different value of `n`.
108
+
This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first.
109
+
The same `wsave` array can be used by `zfftf` and `zfftb`.
109
110
Contains initialization calculations which must not be destroyed between calls of subroutine `zfftf` or `zfftb`.
110
111
111
112
#### Warning
@@ -176,7 +177,7 @@ for j=1,...,n
176
177
177
178
`wsave`: Shall be a `real` array.
178
179
This argument is `intent(inout)`.
179
-
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `zfftf`. The wsave array must be initialized by calling subroutine `zffti(n,wsave)` and a different wsave array must be used for each different value of `n`. This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first. The same wsave array can be used by `zfftf` and `zfftb`.
180
+
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `zfftf`. The `wsave` array must be initialized by calling subroutine `zffti(n,wsave)` and a different `wsave` array must be used for each different value of `n`. This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first. The same `wsave` array can be used by `zfftf` and `zfftb`.
180
181
Contains initialization calculations which must not be destroyed between calls of subroutine `zfftf` or `zfftb`.
181
182
182
183
#### Warning
@@ -201,8 +202,7 @@ end program demo_zfftb
201
202
202
203
### Description
203
204
204
-
Computes the forward complex discrete fourier
205
-
transform (the fourier analysis).
205
+
Computes the forward complex discrete fourier transform (the fourier analysis).
0 commit comments