gpt4 book ai didi

python - 从命令行在 julia 中打印绘图

转载 作者:行者123 更新时间:2023-11-28 21:39:02 26 4
gpt4 key购买 nike

我想使用 Julia 语言在屏幕上打印一个图。我已经添加了 Pkg.add("PyPlot") 并且 Julia 说它已经安装了。所以这里有我要执行的代码:

using PyPlot
x = linspace(0, 10, 200)
y = sin.(x)
plot(x, y, "b-", linewidth=2)

但是一旦我尝试像这样从命令行运行它:

julia example.jl

这需要一段时间,然后什么也没有发生。任何帮助将不胜感激。

最佳答案

你只需要将你的情节保存在某个地方:

using PyPlot
x = linspace(0, 10, 200)
y = sin.(x)
plot(x, y, "b-", linewidth=2)
savefig("my_plot.pdf")

关于python - 从命令行在 julia 中打印绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47377003/

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