Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下命令:
isosurface(data,color)
现在,如果我再次对不同的数据使用相同的命令,它会叠加在前一个命令上。
所以,我试着做:
p = patch(isosurface(foo)); isonormals(foo,p) delete(p);
删除以前的情节,但这样我就不能使用colorbar.
colorbar
我该怎么做?
假设您只想在同一个图形窗口中使用另一个补丁图,只需使用
hold off
你试过这个吗?
cla(gca)
cla清除坐标区并且是您正在绘制的当前坐标gca区的句柄。
cla
gca