我有一些节点,我想绘制它们。他们中的一些人连接到其他人。我不知道如何在 Julia 中绘制一条线?你能帮帮我吗?
例如如下一行:
y=2x+5
谢谢你
尝试查看Julia 关于绘图的文档以及通过在网络搜索引擎上搜索找到的本教程。Julia plots
y = 2x+5
在 Julia v1.1 中绘图:
using Pkg
Pkg.add("Plots") # Comment if you already added package Plots
using Plots
plotly() # Choose the Plotly.jl backend for web interactivity
x = -5:5 # Change for different xaxis range, you can for instance use : x = -5:10:5
y = [2*i + 5 for i in x]
plot(x, y, title="My Plot")