代码搜索:Python
找到约 10,000 项符合「Python」的源代码
代码结果 10,000
www.eeworm.com/read/160583/10516816
py printing_in_wx.py
#!/usr/bin/env python
# printing_in_wx.py
#
"""
This examples demonstrates Printing (ie, to a printer) with a
matplotlib figure using a wx Frame. This borrows the data from
embedding_in_wx.py, but w
www.eeworm.com/read/160583/10516831
py image_interp.py
#!/usr/bin/env python
"""
The same (small) array, interpolated with three different
interpolation methods.
The center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you
are using interpolatio
www.eeworm.com/read/160583/10516892
py accented_text.py
#!/usr/bin/env python
"""
matplotlib supports accented characters via TeX mathtext
The following accents are provided: \hat, \breve, \grave, \bar,
\acute, \tilde, \vec, \dot, \ddot. All of them have
www.eeworm.com/read/160583/10516904
py animation_blit.py
#!/usr/bin/env python
# For detailed comments on animation and the techniques used here, see
# the wiki entry
# http://www.scipy.org/wikis/topical_software/MatplotlibAnimation
import sys
import time
www.eeworm.com/read/160583/10516974
py dynamic_demo_wx.py
#!/usr/bin/env python
"""
Copyright (C) Jeremy O'Donoghue, 2003
License: This work is licensed under the PSF. A copy should be included
with this source code, and is also available at
http://www.pyt
www.eeworm.com/read/160583/10517028
py webapp_demo.py
#!/usr/bin/env python
# This example shows how to use the agg backend directly to create
# images, which may be of use to web application developers who want
# full control over their code without usi
www.eeworm.com/read/160583/10517132
py embedding_in_wx3.py
#!/usr/bin/env python
"""
Copyright (C) 2003-2004 Andrew Straw, Jeremy O'Donoghue and others
License: This work is licensed under the PSF. A copy should be included
with this source code, and is als
www.eeworm.com/read/160583/10517139
py embedding_in_wx.py
#!/usr/bin/env python
# embedding_in_wx.py
#
"""
Copyright (C) Jeremy O'Donoghue, 2003
License: This work is licensed under the PSF. A copy should be included
with this source code, and is also av
www.eeworm.com/read/160583/10517145
py embedding_in_gtk2.py
#!/usr/bin/env python
"""
show how to add a matplotlib FigureCanvasGTK or FigureCanvasGTKAgg widget and
a toolbar to a gtk.Window
"""
import gtk
from matplotlib.axes import Subplot
from matplotlib.fi
www.eeworm.com/read/160583/10517206
py legend_scatter.py
#!/usr/bin/env python
from pylab import *
N=1000
props = dict( alpha=0.5, faceted=False )
handles = []
colours = ['red', 'green', 'blue', 'magenta', 'cyan', 'yellow']
colours = ['red', 'green', 'bl