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.
我有一个未知大小的牛虻层列表:
lines = [layer(x=x,y=i*x) for i in range(1,stop=3)]
现在我想把它们都画在一个情节中。但 Gadfly 需要多个单层,而不是层列表。所以 plot(lines)不起作用,但plot(lines[1], lines[2], lines[3])确实如此。
plot(lines)
plot(lines[1], lines[2], lines[3])
在 Python 中,我只使用 splat 运算符plot(*lines)。
plot(*lines)
如何在 Julia 中做这样的事情?
试着用...
...
plot(lines...)