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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ for j=1,...,n
99
99
```
100
100
101
101
`wsave`: Shall be a `real` array.
102
-
This argument is `intent(inout)`.
102
+
This argument is `intent(in)`.
103
103
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `zfftf`.
104
104
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`.
105
105
This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first.
@@ -169,7 +169,7 @@ for j=1,...,n
169
169
```
170
170
171
171
`wsave`: Shall be a `real` array.
172
-
This argument is `intent(inout)`.
172
+
This argument is `intent(in)`.
173
173
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`.
174
174
Contains initialization calculations which must not be destroyed between calls of subroutine `zfftf` or `zfftb`.
175
175
@@ -385,7 +385,7 @@ if n is even
385
385
```
386
386
387
387
`wsave`: Shall be a `real` array.
388
-
This argument is `intent(inout)`.
388
+
This argument is `intent(in)`.
389
389
A `real` work array which must be dimensioned at least `4n+15` in the program that calls `dfftf`.
390
390
The wsave array must be initialized by calling subroutine `dffti(n,wsave)` and a different `wsave` array must be used for each different value of `n`.
391
391
This initialization does not have to be repeated so long as `n` remains unchanged thus subsequent transforms can be obtained faster than the first.
@@ -464,7 +464,7 @@ for n odd and for i = 1,...,n
464
464
```
465
465
466
466
`wsave`: Shall be a `real` array.
467
-
This argument is `intent(inout)`.
467
+
This argument is `intent(in)`.
468
468
A `real` work array which must be dimensioned at least `2n+15` in the program that calls `dfftf`. The `wsave` array must be initialized by calling subroutine `dffti(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 `dfftf` and `dfftb`.
469
469
Contains initialization calculations which must not be destroyed between calls of subroutine `dfftf` or `dfftb`.
0 commit comments