@@ -12,20 +12,17 @@ function plan_dct! end
1212"""
1313 plan_idct(A [, dims [, flags [, timelimit [, num_threads]]]])
1414
15- Pre-plan an optimized inverse discrete cosine transform (DCT), similar to
16- [`plan_fft`](@ref) except producing a function that computes
17- [`idct`](@ref). The first two arguments have the same meaning as for
15+ Pre-plan an optimized inverse discrete cosine transform (DCT), similar to [`plan_fft`](@extref `AbstractFFTs.plan_fft`)
16+ except producing a function that computes [`idct`](@ref). The first two arguments have the same meaning as for
1817[`idct`](@ref).
1918"""
2019function plan_idct end
2120
2221"""
2322 plan_dct(A [, dims [, flags [, timelimit [, num_threads]]]])
2423
25- Pre-plan an optimized discrete cosine transform (DCT), similar to
26- [`plan_fft`](@ref) except producing a function that computes
27- [`dct`](@ref). The first two arguments have the same meaning as for
28- [`dct`](@ref).
24+ Pre-plan an optimized discrete cosine transform (DCT), similar to [`plan_fft`](@extref `AbstractFFTs.plan_fft`) except
25+ producing a function that computes [`dct`](@ref). The first two arguments have the same meaning as for [`dct`](@ref).
2926"""
3027function plan_dct end
3128
@@ -39,12 +36,10 @@ function plan_idct! end
3936"""
4037 dct(A [, dims])
4138
42- Performs a multidimensional type-II discrete cosine transform (DCT) of the array `A`, using
43- the unitary normalization of the DCT. The optional `dims` argument specifies an iterable
44- subset of dimensions (e.g. an integer, range, tuple, or array) to transform along. Most
45- efficient if the size of `A` along the transformed dimensions is a product of small primes;
46- see [`nextprod`](@ref). See also [`plan_dct`](@ref) for even greater
47- efficiency.
39+ Performs a multidimensional type-II discrete cosine transform (DCT) of the array `A`, using the unitary normalization of
40+ the DCT. The optional `dims` argument specifies an iterable subset of dimensions (e.g. an integer, range, tuple, or
41+ array) to transform along. Most efficient if the size of `A` along the transformed dimensions is a product of small
42+ primes; see [`nextprod`](@extref `Base.nextprod`). See also [`plan_dct`](@ref) for even greater efficiency.
4843"""
4944function dct end
5045
@@ -55,7 +50,7 @@ Computes the multidimensional inverse discrete cosine transform (DCT) of the arr
5550(technically, a type-III DCT with the unitary normalization). The optional `dims` argument
5651specifies an iterable subset of dimensions (e.g. an integer, range, tuple, or array) to
5752transform along. Most efficient if the size of `A` along the transformed dimensions is a
58- product of small primes; see [`nextprod`](@ref ). See also
53+ product of small primes; see [`nextprod`](@extref `Base.nextprod` ). See also
5954[`plan_idct`](@ref) for even greater efficiency.
6055"""
6156function idct end
0 commit comments