@@ -30,7 +30,7 @@ end subroutine zffti
30
30
31
31
! > Version: experimental
32
32
! >
33
- ! > Forward transform of a double complex periodic sequence.
33
+ ! > Forward transform of a complex periodic sequence.
34
34
! > ([Specification](../page/specs/fftpack.html#zfftf))
35
35
pure subroutine zfftf (n , c , wsave )
36
36
import rk
@@ -62,7 +62,7 @@ end subroutine dffti
62
62
63
63
! > Version: experimental
64
64
! >
65
- ! > Forward transform of a double real periodic sequence.
65
+ ! > Forward transform of a real periodic sequence.
66
66
! > ([Specification](../page/specs/fftpack.html#dfftf))
67
67
pure subroutine dfftf (n , r , wsave )
68
68
import rk
@@ -94,7 +94,7 @@ end subroutine dzffti
94
94
95
95
! > Version: experimental
96
96
! >
97
- ! > Simplified forward transform of a double real periodic sequence.
97
+ ! > Simplified forward transform of a real periodic sequence.
98
98
! > ([Specification](../page/specs/fftpack.html#dzfftf))
99
99
pure subroutine dzfftf (n , r , azero , a , b , wsave )
100
100
import rk
@@ -154,7 +154,7 @@ end subroutine dcosqb
154
154
155
155
! > Version: experimental
156
156
! >
157
- ! > Forward transform of a double complex periodic sequence.
157
+ ! > Forward transform of a complex periodic sequence.
158
158
! > ([Specifiction](../page/specs/fftpack.html#fft))
159
159
interface fft
160
160
pure module function fft_rk(x, n) result(result)
@@ -166,7 +166,7 @@ end function fft_rk
166
166
167
167
! > Version: experimental
168
168
! >
169
- ! > Backward transform of a double complex periodic sequence.
169
+ ! > Backward transform of a complex periodic sequence.
170
170
! > ([Specifiction](../page/specs/fftpack.html#ifft))
171
171
interface ifft
172
172
pure module function ifft_rk(x, n) result(result)
@@ -178,7 +178,7 @@ end function ifft_rk
178
178
179
179
! > Version: experimental
180
180
! >
181
- ! > Forward transform of a double real periodic sequence.
181
+ ! > Forward transform of a real periodic sequence.
182
182
! > ([Specifiction](../page/specs/fftpack.html#rfft))
183
183
interface rfft
184
184
pure module function rfft_rk(x, n) result(result)
@@ -190,7 +190,7 @@ end function rfft_rk
190
190
191
191
! > Version: experimental
192
192
! >
193
- ! > Backward transform of a double real periodic sequence.
193
+ ! > Backward transform of a real periodic sequence.
194
194
! > ([Specifiction](../page/specs/fftpack.html#irfft))
195
195
interface irfft
196
196
pure module function irfft_rk(x, n) result(result)
0 commit comments