the streamline plot does not clear in an App while contour does. How do I clear the streamline plot?

1 view (last 30 days)
[u,v] = gradient(phi);
[strx, stry] = meshgrid(xmin:0.4:xmax,ymin:0.4:ymax); % where to draw the streamline
streamline(app.UIAxes2,x,y,u,v,strx,stry);
title(app.UIAxes2,'Streamlines')
xlabel(app.UIAxes2,'x')
ylabel(app.UIAxes2,'y')

Answers (2)

Cris LaPierre
Cris LaPierre on 27 Jul 2021
Add the following before creating your streamline plot.
cla(app.UIAxes2)

Dan Green
Dan Green on 27 Jul 2021
Thanks - I should have seen that......
best
Dan

Categories

Find more on Vector Fields in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!