@@ -8218,6 +8218,10 @@ def psd(self, x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
82188218
82198219 %(PSD)s
82208220
8221+ *noverlap*: integer
8222+ The number of points of overlap between blocks. The default value
8223+ is 0 (no overlap).
8224+
82218225 *Fc*: integer
82228226 The center frequency of *x* (defaults to 0), which offsets
82238227 the x extents of the plot to reflect the frequency range used
@@ -8295,6 +8299,10 @@ def csd(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
82958299
82968300 %(PSD)s
82978301
8302+ *noverlap*: integer
8303+ The number of points of overlap between blocks. The
8304+ default value is 0 (no overlap).
8305+
82988306 *Fc*: integer
82998307 The center frequency of *x* (defaults to 0), which offsets
83008308 the x extents of the plot to reflect the frequency range used
@@ -8361,6 +8369,10 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
83618369
83628370 %(PSD)s
83638371
8372+ *noverlap*: integer
8373+ The number of points of overlap between blocks. The
8374+ default value is 0 (no overlap).
8375+
83648376 *Fc*: integer
83658377 The center frequency of *x* (defaults to 0), which offsets
83668378 the x extents of the plot to reflect the frequency range used
@@ -8421,6 +8433,10 @@ def specgram(self, x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
84218433
84228434 %(PSD)s
84238435
8436+ *noverlap*: integer
8437+ The number of points of overlap between blocks. The
8438+ default value is 128.
8439+
84248440 *Fc*: integer
84258441 The center frequency of *x* (defaults to 0), which offsets
84268442 the y extents of the plot to reflect the frequency range used
@@ -8445,7 +8461,7 @@ def specgram(self, x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
84458461
84468462 - *bins* are the time points the spectrogram is calculated over
84478463 - *freqs* is an array of frequencies
8448- - *Pxx* is a len(times) x len(freqs) array of power
8464+ - *Pxx* is an array of shape `( len(times), len(freqs))` of power
84498465 - *im* is a :class:`~matplotlib.image.AxesImage` instance
84508466
84518467 Note: If *x* is real (i.e. non-complex), only the positive
0 commit comments