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:3使用点但3:-1:1使用线来绘制。
1:3
3:-1:1
如何使用 Plots.jl 实现这一目标?
首先绘制一件事,然后使用带有 bang 的新绘图命令来修改以前的绘图。
scatter(1:3) plot!(3:-1:1)