vlt.plot.movetofront-Moveaplottothe"front"ofthe"paper"vlt.plot.movetofront(PLOT_H)MovestheplotspecifiedbytheplothandlePLOT_Htothe"front"ofthepaperinthecurrentaxis.Example:figure;holdon;h1=plot([01],[01],'k','linewidth',2);h2=plot([0.50.5],[01],'r','linewidth',2);% at this point, the red line in h2 is "above"% the black line in h1vlt.plot.movetofront(h1);% now the black line is in "front"PLOT_Hcanbeasinglehandleoranarrayofhandles.