This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Return the Inverse Discrete Cosine Transform of an arbitrary type sequence.
Parameters : | x : array_like
type : {1, 2, 3}, optional
n : int, optional
axis : int, optional
norm : {None, ‘ortho’}, optional
overwrite_x : bool, optional
|
---|---|
Returns : | y : ndarray of real
|
See also
Notes
For a single dimension array x, idct(x, norm='ortho') is equal to MATLAB idct(x).
‘The’ IDCT is the IDCT of type 2, which is the same as DCT of type 3.
IDCT of type 1 is the DCT of type 1, IDCT of type 2 is the DCT of type 3, and IDCT of type 3 is the DCT of type 2. For the definition of these types, see dct.