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

📄 subplot.m

📁 codes for matlab software
💻 M
字号:
clc,clear,clf,close all
t=0:10;
a=10;T=3;w=2*pi/T;thita=0;
Vs=a*sin(w*t+thita);
Ve=0.9.^t;
Vc=0.7.^t.*sin(w*t+thita);
subplot(3,1,1);plot(t,Vs,'r')
xlabel('time[mS]')
ylabel('Voltage [v]')
title('sinosudal')
subplot(3,1,2);plot(t,Ve)
xlabel('time [mS]')
ylabel('Voltage [v]')
title('exponential')
subplot(3,1,3);plot(t,Vc,'g')
xlabel('time [mS]')
ylabel('Voltage [v]')
title('casual') 

⌨️ 快捷键说明

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