lue wraps around from ``os.cpu_count()``. See :func:`~scipy.fft.fft` for more details. orthogonalize : bool, optional Whether to use the orthogonalized IDST variant (see Notes). Defaults to ``True`` when ``norm="ortho"`` and ``False`` otherwise. .. versionadded:: 1.8.0 Returns ------- y : ndarray of real The transformed input array. See Also -------- dstn : multidimensional DST Notes ----- For full details of the IDST types and normalization modes, as well as references, see `idst`. Examples -------- >>> import numpy as np >>> from scipy.fft import dstn, idstn >>> rng = np.random.default_rng() >>> y = rng.standard_normal((16, 16)) >>> np.allclose(y, idstn(dstn(y))) True r