Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个向量,其中每个向量的每个对应位置代表一个点,例如一个向量的位置 1 的值为 x1,另一个向量的位置 1 的值为 y1,这些值 (x1 , y1) 表示观点。等等点(x2,y2),(x3,y3)......我需要用这组点绘制一个图表。
我怎样才能在 Julia 中做到这一点?
你只是scatter(x,y)为了画点
scatter(x,y)
x = [1,2,3,4]; y = [4,7,5,9]; using Plots scatter(x,y; legend=:topleft)