由买买提看人间百态

topics

全部话题 - 话题: savefig
(共0页)
i*****f
发帖数: 578
1
【 以下文字转载自 Programming 讨论区 】
发信人: icewolf (好好活), 信区: Programming
标 题: 有matplotlib或numpy/scipy的同学帮我试试
发信站: BBS 未名空间站 (Wed Feb 10 16:47:54 2010, 美东)
【 以下文字转载自 Python 俱乐部 】
发信人: icewolf (好好活), 信区: Python
标 题: 有matplotlib或numpy/scipy的同学帮我试试
发信站: BBS 未名空间站 (Wed Feb 10 16:45:08 2010, 美东)
from pylab import *
figure()
plot(range(10))
show()
savefig('bla.pdf')
存成文件执行,看看savefig()那行是否crash?
好奇怪,前几天还好好的。
Fatal Python error: PyEval_RestoreThread: NULL tstate
This application has requested the Runtime to ter
i*****f
发帖数: 578
2
【 以下文字转载自 Python 俱乐部 】
发信人: icewolf (好好活), 信区: Python
标 题: 有matplotlib或numpy/scipy的同学帮我试试
发信站: BBS 未名空间站 (Wed Feb 10 16:45:08 2010, 美东)
from pylab import *
figure()
plot(range(10))
show()
savefig('bla.pdf')
存成文件执行,看看savefig()那行是否crash?
好奇怪,前几天还好好的。
Fatal Python error: PyEval_RestoreThread: NULL tstate
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
我的系统:win7, matplotlib 0.99.01
f*******a
发帖数: 80
3
来自主题: Computation版 - 请教怎样把一个Matlab画的图压小?
On matlab Central - File exchange, there is a small program called "savefig"
. It is capable of saving figures into eps, pdf, etc. with a very tight
bounding box, ie. do not have the white margin if you use matlab to save as
eps figure directly. Bascially, "savefig" invokes Ghostscript printer driver
to do the conversion. The resulting files size is small, ~100K at most for
3D color plot.

转存两次把数据去掉之后,图像质量也下降了。建议用photoshop,根据实际要求大小
转存。
i*****f
发帖数: 578
4
from pylab import *
figure()
plot(range(10))
show()
savefig('bla.pdf')
存成文件执行,看看savefig()那行是否crash?
好奇怪,前几天还好好的。
Fatal Python error: PyEval_RestoreThread: NULL tstate
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
我的系统:win7, matplotlib 0.99.01
S*A
发帖数: 7142
5
来自主题: GunsAndGears版 - 写了个生成练习的纸靶子的程序
是使用 python mathplotlib.
在 Fedora 下面如果没有 mathplotlib 的话
yum install python-mathplotlib
就可以了
生成 5x4 个 bull's eye. 程序很短,大家可以自己调参数。
这个程序运行後生成 target.pdf. 这个 pdf 的好处是矢量图。
可以无限放大没有颗粒的。
我的喜好是边上留多一点。这样铁喵比较多白边可以看。
中间多一点比较好,这样可以少打几张纸,比较小农。
size 是 bull's eye 的大小, width 是环的宽度。
xn, yn 是有多少个 bull's eye.
================== target.py ===============
#!/usr/bin/python
import matplotlib
from matplotlib.patches import Circle, Wedge, Rectangle
from matplotlib.backends.backend_pdf import PdfPages
import matplotlib.p... 阅读全帖
a*******h
发帖数: 123
6
Work fines on my Ubuntu. And thanks for the savefig( ) tip.

way.
(共0页)