For full details of the DCT types and normalization modes, as well as references, see dct
.
The input array.
Type of the DCT (see Notes). Default type is 2.
The shape of the result. If both s
and :None:None:`axes`
(see below) are None, s
is x.shape
; if s
is None but :None:None:`axes`
is not None, then s
is numpy.take(x.shape, axes, axis=0)
. If s[i] > x.shape[i]
, the ith dimension is padded with zeros. If s[i] < x.shape[i]
, the ith dimension is truncated to length s[i]
. If any element of s
is -1, the size of the corresponding dimension of x
is used.
Axes over which the DCT is computed. If not given, the last len(s)
axes are used, or all axes if s
is also not specified.
Normalization mode (see Notes). Default is "backward".
If True, the contents of x
can be destroyed; the default is False.
Maximum number of workers to use for parallel computation. If negative, the value wraps around from os.cpu_count()
. See ~scipy.fft.fft
for more details.
Whether to use the orthogonalized DCT variant (see Notes). Defaults to True
when norm=="ortho"
and False
otherwise.
The transformed input array.
Return multidimensional Discrete Cosine Transform along the specified axes.
idctn
Inverse multidimensional DCT
>>> from scipy.fft import dctn, idctnSee :
... rng = np.random.default_rng()
... y = rng.standard_normal((16, 16))
... np.allclose(y, idctn(dctn(y))) True
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.fft._realtransforms.idctn
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them