2023年6月8日星期四-MATLAB画图总结

set(gca,'xtick',[],'ytick',[],'ztick',[],'xcolor','w','ycolor','w','zcolor','w') %去除坐标轴

1. 更改Figure窗口的背景色


set(gcf,'color','white');%白色
set(gcf,'color',[0.9 0.4 0.2]);%任意RGB色

set(gcf,'color','black');%黑色

set(gcf,'color','blue');%蓝色

2. 更Figure 2D/3D图的背景色

set(gcf,'color','white'); %窗口背景白色
colordef black; %2D/3D图背景黑色

set(gcf,'color','black'); %窗口背景黑色
colordef black; %2D/3D图背景黑色

set(gcf,'color',[0.9 0.4 0.2]); %窗口背景RGB橙色
colordef none; %2D/3D图背景透明色(能透过看到窗口背景的颜色)

3. 恢复Figure窗口和Figure 2D/3D图的默认颜色

reset(groot); %重置图形根对象

参考:Matlab更改Figure图窗的背景色|底色|网格色|黑色白色蓝色红色任意RGB色|重置颜色_matlab更改figure背景颜色_光学码农的博客-CSDN博客

你可能感兴趣的:(matlab,开发语言,数学建模)