📄 08-04.txt
字号:
%例8-4 使用subplot函数进行多图的绘制。
>> x = 0:.1:20;
>> subplot(2,2,1)
>> plot(x,sin(x));
>>
>> x = 0:.1:20;
>> subplot(2,2,2)
>> plot(x,cos(x));
>>
>> subplot(2,2,3)
>> x = 0:.1:2;
>> y1=tan(x);
>> plot(x,y1,'--b*');
>>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -