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

📄 plotoven.m

📁 a program that generates a pulse-width modulated (PWM)signal.
💻 M
字号:
% Plot oven data
% File format is t th1set th1 m1 th2set th2 m2

load('working\ovendata.txt');
subplot(2,2,1);
plot(ovendata(:,1),ovendata(:,4),'k');
ylabel('Heater#1 current');
subplot(2,2,3);
plot(ovendata(:,1),ovendata(:,2),'k--',ovendata(:,1),ovendata(:,3),'k');
ylabel('Heater#1 temperature');
subplot(2,2,2);
plot(ovendata(:,1),ovendata(:,7),'k');
ylabel('Heater#2 current');
subplot(2,2,4);
plot(ovendata(:,1),ovendata(:,5),'k--',ovendata(:,1),ovendata(:,6),'k');
ylabel('Heater#2 temperature');

⌨️ 快捷键说明

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