Quick question on GR usage.
I'd like to be able to plot multiple plots on the same figure with multiple commands (in Julia)
Currently this works:
plot(t,BezierBasis(1,order,knot_v,t),"b",t,BezierBasis(2,order,knot_v,t),"b")
But what I'd like to do is this:
for i = 1:length(knot_v)
plot(t,BezierBasis(i,order,knot_v,t),"b")
end
In MATLAB there was a command "hold on" to do this. Is there a way to do this yet in GR?
Thanks!
-Steven