Answers for "matlab new figure plot"

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
0

matlab plot point

% Add this
 hold on
 plot(x_pos,y_pos,'r*')
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language