For full details of the IDST types and normalization modes, as well as references, see idst
.
The input array.
Type of the DST (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 IDST 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 IDST variant (see Notes). Defaults to True
when norm=="ortho"
and False
otherwise.
The transformed input array.
Return multidimensional Inverse Discrete Sine Transform along the specified axes.
dstn
multidimensional DST
>>> from scipy.fft import dstn, idstnSee :
... rng = np.random.default_rng()
... y = rng.standard_normal((16, 16))
... np.allclose(y, idstn(dstn(y))) True
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.fft._realtransforms.dstn
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