gpt4 book ai didi

python - 如何将python数组分配给gnuplot数组?

转载 作者:行者123 更新时间:2023-12-04 09:06:02 25 4
gpt4 key购买 nike

我有以下代码,我试图将 python 数组 A 分配给 gnuplot 数组 B,但是,我无法遍历 python 数组。我该怎么做呢?

import subprocess

proc = subprocess.Popen(['gnuplot','-p'],
shell=True,
stdin=subprocess.PIPE,
encoding='utf8'
)

A = [1, 2, 3]
proc.communicate(
f"""
array B[3]
do for [i=1:3] {{ B[i] = {A[2]} }}
print B
"""
)
上面的程序打印:[3,3,3]。我期待打印 [1,2,3]。 (本质上我必须从 python 中的 gnuplot 访问 i)
Gnuplot 5.2 版补丁级别 2
Python 版本 3.6.9

最佳答案

这将解决问题

import subprocess

proc = subprocess.Popen(['gnuplot','-p'],
shell=True,
stdin=subprocess.PIPE,
encoding='utf8'
)

A = [1, 2, 3]

# create the array
proc.stdin.write( 'array B[{}]; print B;'.format( len(A) ) )

# send the data piece by piece
for i,x in enumerate(A):
proc.stdin.write( 'B[{}] = {};'.format( i+1, x ) )

# print the array in gnuplot and finish the process
proc.communicate(
f"""
print B
"""
)
问题是数据存在于两个不同的环境中,gnuplot 无法从 python 中获取数据,您可以使用 proc.communicate 与它们进行通信。将消息发送到 gnuplot 但也等待直到进程完成,这会使用 gnuplot 关闭管道并且不允许我们发送我们想要的所有数据,使用 proc.stdin.write解决这个问题。

关于python - 如何将python数组分配给gnuplot数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63445452/

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