()
| 2834 | |
| 2835 | |
| 2836 | def contour_dat(): |
| 2837 | x = np.linspace(-3, 5, 150) |
| 2838 | y = np.linspace(-3, 5, 120) |
| 2839 | z = np.cos(x) + np.sin(y[:, np.newaxis]) |
| 2840 | return x, y, z |
| 2841 | |
| 2842 | |
| 2843 | @image_comparison(['contour_hatching'], remove_text=True, style='mpl20') |
no outgoing calls
no test coverage detected
searching dependent graphs…