⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subploting.m

📁 这么代码是用Matlab编写的
💻 M
字号:
function subploting()
clf;
clear all;
subplot(2,2,1);
plot(1:10);
title('plot(1:10)');
subplot(2,2,2);
x=0:.1:2*pi;
plot(x,sin(x));
title('plot(x,sin(x))');
subplot(2,2,3);
plot(x,exp(-x),'r');
title('plot(x,exp(-x)),"r"');
subplot(2,2,4);
plot(peaks);
title('plot(peaks)');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -