@@ -127,7 +127,7 @@ end subroutine dzfftb
127
127
! > Version: experimental
128
128
! >
129
129
! > Initialize `dcosqf` and `dcosqb`.
130
- ! > ([Specification](../page/specs/fftpack.html#dcosqi))
130
+ ! > ([Specification](../page/specs/fftpack.html#initialize-dct-2-3- dcosqi-or-dct_t23i ))
131
131
pure subroutine dcosqi (n , wsave )
132
132
import rk
133
133
integer , intent (in ) :: n
@@ -137,7 +137,7 @@ end subroutine dcosqi
137
137
! > Version: experimental
138
138
! >
139
139
! > Forward transform of quarter wave data.
140
- ! > ([Specification](../page/specs/fftpack.html#dcosqf))
140
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-3- dcosqf-or-dct_t3 ))
141
141
pure subroutine dcosqf (n , x , wsave )
142
142
import rk
143
143
integer , intent (in ) :: n
@@ -148,7 +148,7 @@ end subroutine dcosqf
148
148
! > Version: experimental
149
149
! >
150
150
! > Unnormalized inverse of `dcosqf`.
151
- ! > ([Specification](../page/specs/fftpack.html#dcosqb))
151
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-2- dcosqb-or-dct_t2 ))
152
152
pure subroutine dcosqb (n , x , wsave )
153
153
import rk
154
154
integer , intent (in ) :: n
@@ -158,7 +158,8 @@ end subroutine dcosqb
158
158
159
159
! > Version: experimental
160
160
! >
161
- ! > Initialize `dcost`. ([Specification](../page/specs/fftpack.html#dcosti))
161
+ ! > Initialize `dcost`.
162
+ ! > ([Specification](../page/specs/fftpack.html#initialize-dct-1-dcosti-or-dct_t1i))
162
163
pure subroutine dcosti (n , wsave )
163
164
import rk
164
165
integer , intent (in ) :: n
@@ -168,7 +169,7 @@ end subroutine dcosti
168
169
! > Version: experimental
169
170
! >
170
171
! > Discrete fourier cosine transform of an even sequence.
171
- ! > ([Specification](../page/specs/fftpack.html#dcost))
172
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-1- dcost-or-dct_t1 ))
172
173
pure subroutine dcost (n , x , wsave )
173
174
import rk
174
175
integer , intent (in ) :: n
@@ -273,39 +274,39 @@ end function idct_rk
273
274
! > Version: experimental
274
275
! >
275
276
! > Initialize DCT type-1
276
- ! > ([Specification](../page/specs/fftpack.html#dct_t1i))
277
+ ! > ([Specification](../page/specs/fftpack.html#initialize-dct-1-dcosti-or- dct_t1i))
277
278
interface dct_t1i
278
279
procedure :: dcosti
279
280
end interface dct_t1i
280
281
281
282
! > Version: experimental
282
283
! >
283
284
! > Perform DCT type-1
284
- ! > ([Specification](../page/specs/fftpack.html#dct_t1))
285
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-1-dcost-or- dct_t1))
285
286
interface dct_t1
286
287
procedure :: dcost
287
288
end interface dct_t1
288
289
289
290
! > Version: experimental
290
291
! >
291
292
! > Initialize DCT types 2, 3
292
- ! > ([Specification](../page/specs/fftpack.html#dct_t23i))
293
+ ! > ([Specification](../page/specs/fftpack.html#initialize-dct-2-3-dcosqi-or- dct_t23i))
293
294
interface dct_t23i
294
295
procedure :: dcosqi
295
296
end interface dct_t23i
296
297
297
298
! > Version: experimental
298
299
! >
299
300
! > Perform DCT type-2
300
- ! > ([Specification](../page/specs/fftpack.html#dct_t2))
301
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-2-dcosqb-or- dct_t2))
301
302
interface dct_t2
302
303
procedure :: dcosqb
303
304
end interface dct_t2
304
305
305
306
! > Version: experimental
306
307
! >
307
308
! > Perform DCT type-3
308
- ! > ([Specification](../page/specs/fftpack.html#dct_t3))
309
+ ! > ([Specification](../page/specs/fftpack.html#compute-dct-3-dcosqf-or- dct_t3))
309
310
interface dct_t3
310
311
procedure :: dcosqf
311
312
end interface dct_t3
0 commit comments