|
@@ 874-877 (lines=4) @@
|
| 871 |
|
|
| 872 |
|
if (hide_axes is True):
|
| 873 |
|
axes.xaxis.set_ticklabels([]);
|
| 874 |
|
axes.yaxis.set_ticklabels([]);
|
| 875 |
|
|
| 876 |
|
if (dimension == 3):
|
| 877 |
|
axes.zaxis.set_ticklabels([]);
|
| 878 |
|
|
| 879 |
|
if (display_result is True):
|
| 880 |
|
plt.show();
|
|
@@ 853-856 (lines=4) @@
|
| 850 |
|
|
| 851 |
|
for item in noise:
|
| 852 |
|
if (dimension == 1):
|
| 853 |
|
if (data is None):
|
| 854 |
|
axes.plot(item[0], 0.0, 'w' + marker_descr);
|
| 855 |
|
else:
|
| 856 |
|
axes.plot(data[item][0], 0.0, 'w' + marker_descr);
|
| 857 |
|
|
| 858 |
|
if (dimension == 2):
|
| 859 |
|
if (data is None):
|