using Plots;plotly()
begin
plot()
for i = 0:0.1:1
vline!([i], leg = :none)
sleep(0.01)
end
#plot!()
end
I want to the plot for for each iteration of the loop.How can I do it?
4 posts - 3 participants
using Plots;plotly()
begin
plot()
for i = 0:0.1:1
vline!([i], leg = :none)
sleep(0.01)
end
#plot!()
end
I want to the plot for for each iteration of the loop.How can I do it?
4 posts - 3 participants