MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / angle_spectrum

Function angle_spectrum

lib/matplotlib/pyplot.py:3011–3031  ·  view source on GitHub ↗
(
    x: ArrayLike,
    Fs: float | None = None,
    Fc: int | None = None,
    window: Callable[[ArrayLike], ArrayLike] | ArrayLike | None = None,
    pad_to: int | None = None,
    sides: Literal["default", "onesided", "twosided"] | None = None,
    *,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3009# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3010@_copy_docstring_and_deprecators(Axes.angle_spectrum)
3011def angle_spectrum(
3012 x: ArrayLike,
3013 Fs: float | None = None,
3014 Fc: int | None = None,
3015 window: Callable[[ArrayLike], ArrayLike] | ArrayLike | None = None,
3016 pad_to: int | None = None,
3017 sides: Literal["default", "onesided", "twosided"] | None = None,
3018 *,
3019 data: DataParamType = None,
3020 **kwargs,
3021) -> tuple[np.ndarray, np.ndarray, Line2D]:
3022 return gca().angle_spectrum(
3023 x,
3024 Fs=Fs,
3025 Fc=Fc,
3026 window=window,
3027 pad_to=pad_to,
3028 sides=sides,
3029 **({"data": data} if data is not None else {}),
3030 **kwargs,
3031 )
3032
3033
3034# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
angle_spectrumMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…