gpt4 book ai didi

python - 在 Python 中使用名称中带有字符串和迭代索引的 savefig

转载 作者:太空狗 更新时间:2023-10-30 01:09:26 25 4
gpt4 key购买 nike

我需要使用 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]

非常感谢。

最佳答案

嗯,它应该很简单:

savefig(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')

关于python - 在 Python 中使用名称中带有字符串和迭代索引的 savefig,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13682628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com