Skip to content

Commit b673f51

Browse files
committed
fix doc spec links
1 parent fbd3d9a commit b673f51

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/fftpack.f90

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ end subroutine dzfftb
127127
!> Version: experimental
128128
!>
129129
!> 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))
131131
pure subroutine dcosqi(n, wsave)
132132
import rk
133133
integer, intent(in) :: n
@@ -137,7 +137,7 @@ end subroutine dcosqi
137137
!> Version: experimental
138138
!>
139139
!> 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))
141141
pure subroutine dcosqf(n, x, wsave)
142142
import rk
143143
integer, intent(in) :: n
@@ -148,7 +148,7 @@ end subroutine dcosqf
148148
!> Version: experimental
149149
!>
150150
!> Unnormalized inverse of `dcosqf`.
151-
!> ([Specification](../page/specs/fftpack.html#dcosqb))
151+
!> ([Specification](../page/specs/fftpack.html#compute-dct-2-dcosqb-or-dct_t2))
152152
pure subroutine dcosqb(n, x, wsave)
153153
import rk
154154
integer, intent(in) :: n
@@ -158,7 +158,8 @@ end subroutine dcosqb
158158

159159
!> Version: experimental
160160
!>
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))
162163
pure subroutine dcosti(n, wsave)
163164
import rk
164165
integer, intent(in) :: n
@@ -168,7 +169,7 @@ end subroutine dcosti
168169
!> Version: experimental
169170
!>
170171
!> 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))
172173
pure subroutine dcost(n, x, wsave)
173174
import rk
174175
integer, intent(in) :: n
@@ -273,39 +274,39 @@ end function idct_rk
273274
!> Version: experimental
274275
!>
275276
!> 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))
277278
interface dct_t1i
278279
procedure :: dcosti
279280
end interface dct_t1i
280281

281282
!> Version: experimental
282283
!>
283284
!> 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))
285286
interface dct_t1
286287
procedure :: dcost
287288
end interface dct_t1
288289

289290
!> Version: experimental
290291
!>
291292
!> 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))
293294
interface dct_t23i
294295
procedure :: dcosqi
295296
end interface dct_t23i
296297

297298
!> Version: experimental
298299
!>
299300
!> 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))
301302
interface dct_t2
302303
procedure :: dcosqb
303304
end interface dct_t2
304305

305306
!> Version: experimental
306307
!>
307308
!> 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))
309310
interface dct_t3
310311
procedure :: dcosqf
311312
end interface dct_t3

0 commit comments

Comments
 (0)