我需要在Python中使用“savefig”来保存while循环的每次迭代的图,我希望我给图的名称包含一个文字部分和一个数字部分.这个是从数组中出来的,或者是与迭代索引相关联的数字.我举一个简单的例子:
# index.py
from numpy import *
from pylab import *
from matplotlib import *
from matplotlib.pyplot import *
import os
x=arange(0.12,60,0.12).reshape(100,5)
y=sin(x)
i=0
while i<99
figure()
a=x[:,i]
b=y[:,i]
c=a[0]
plot(x,y,label='%s%d'%('x=',c))
savefig(#???#) #I want the name is: x='a[0]'.png
#where 'a[0]' is the value of a[0]
非常感谢.
最佳答案
嗯,它应该是这样的:
原文链接:https://www.f2er.com/python/439430.htmlsavefig(str(a[0]))
这是一个玩具的例子.适合我.
import pylab as pl
import numpy as np
# some data
x = np.arange(10)
pl.figure()
pl.plot(x)
pl.savefig('x=' + str(10) + '.png')