File tree Expand file tree Collapse file tree
doc/release/prev_whats_new
galleries/examples/statistics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ psd amplitude scaling
138138
139139Ryan May did a lot of work to rationalize the amplitude scaling of
140140:func: `~matplotlib.pyplot.psd ` and friends. See
141- :doc: `/gallery/lines_bars_and_markers /psd_demo `.
141+ :doc: `/gallery/statistics /psd_demo `.
142142The changes should increase MATLAB
143143compatibility and increase scaling options.
144144
Original file line number Diff line number Diff line change 44=====================================
55
66An example showing how to plot the coherence of two signals using `~.Axes.cohere`.
7+
8+ .. redirect-from:: /gallery/lines_bars_and_markers/cohere
79"""
810import matplotlib .pyplot as plt
911import numpy as np
Original file line number Diff line number Diff line change 44============================
55
66Plot the cross spectral density (CSD) of two signals using `~.Axes.csd`.
7+
8+ .. redirect-from:: /gallery/lines_bars_and_markers/csd_demo
79"""
810import matplotlib .pyplot as plt
911import numpy as np
Original file line number Diff line number Diff line change 88The PSD is a common plot in the field of signal processing. NumPy has
99many useful libraries for computing a PSD. Below we demo a few examples
1010of how this can be accomplished and visualized with Matplotlib.
11+
12+ .. redirect-from:: /gallery/lines_bars_and_markers/psd_demo
1113"""
1214import matplotlib .pyplot as plt
1315import numpy as np
Original file line number Diff line number Diff line change 55
66Example use of cross-correlation (`~.Axes.xcorr`) and auto-correlation
77(`~.Axes.acorr`) plots.
8+
9+ .. redirect-from:: /gallery/lines_bars_and_markers/xcorr_acorr_demo
810"""
911import matplotlib .pyplot as plt
1012import numpy as np
You can’t perform that action at this time.
0 commit comments