A、gca
B、gcf
C、gco
D、gcw
A、图形窗口n(n是图形窗口的序号)
B、Fig n(n是图形窗口的序号)
C、Figure n(n是图形窗口的序号)
D、Figure Window n(n是图形窗口的序号)
A、Box
B、Grid
C、Position
D、Font
A、line(x,y,'Color','r');
B、line(x,y,'r');
C、plot(x,y,'Color','r');
D、plot(x,y,'r');
A、h.Color='r';
B、h.color='r';
C、h.COLOR='r';
D、h.LineColor='r';
A、Title
B、String
C、Tag
D、Label
A、前景色和背景色
B、前景色和说明文字的颜色
C、说明文字的颜色和背景色
D、背景色和说明文字的颜色
A、String
B、Command
C、CallBack
D、Value
A、'On'
B、'Off'
C、'Yes'
D、'No'
A、对象属性检查器
B、工具栏编辑器
C、对象浏览器
D、对象属性窗格
A、图形窗口
B、坐标轴
C、面板
D、旋钮
A、x=0:pi/20:2*pi; [x,y]=meshgrid(x); z=sin(y).*cos(x); surf(x,y,z);
B、x=0:pi/20:2*pi; [x,y]=meshgrid(x); z=sin(y).*cos(x); surface(x,y,z); grid on; view(-30,37.5)
C、fx=@(x,y) x; fy=@(x,y) y; fz=@(x,y) sin(y).*cos(x); fsurf(fx,fy,fz,[0,2*pi])
D、