Answers for "bring plot on top matlab"

1

bring plot on top matlab

a = plot(x,y) %let a be the handle to plot 1
b= plot(x2,y2) %let b be the handle to plot 2
uistack(a,'top') %you can also do uistack(b,'bottom')
Posted by: Guest on September-16-2020

Browse Popular Code Answers by Language