8000 Fix cohere-demo by dstansby · Pull Request #7968 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix cohere-demo #7968

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 8, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move cohere_demo to lines_bars_and_markers
  • Loading branch information
dstansby committed Jan 29, 2017
commit 7f81351cea5b04d3019c80ffc0c257be76c9603d
2 changes: 1 addition & 1 deletion examples/tests/backend_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@

files['lines'] = [
'barh_demo.py',
'cohere_demo',
'fill_demo.py',
'fill_demo_features.py',
'line_demo_dash_control.py',
Expand Down Expand Up @@ -127,7 +128,6 @@
'barcode_demo.py',
'boxplot_demo.py',
'broken_barh.py',
'cohere_demo.py',
'color_by_yvalue.py',
'color_demo.py',
'colorbar_tick_labelling_demo.py',
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7082,7 +7082,7 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,

Examples
--------
.. plot:: mpl_examples/pylab_examples/cohere_demo.py
.. plot:: mpl_examples/lines_bars_and_markers/cohere_demo.py
"""
if not self._hold:
self.cla()
Expand Down
0