importTrace('Energy_Data/ping110-2better.lvm') power=data; p110=moving(power,10); figure; %plot(p110) % ping 1 ax1 = subplot(3,2,1); plot(ax1,p110(1800:13800)) title('Ping number 1') xlabel('time [ms]') % x-axis label ylabel('Power [Watt]') % y-axis label % ping 2 ax2 = subplot(3,2,2); plot(ax2,p110(32000:45800)) title('Ping number 2') xlabel('time [ms]') % x-axis label ylabel('Power [Watt]') % y-axis label % ping 3 ax3 = subplot(3,2,3); plot(ax3,p110(97700:110300)) title('Ping number 3') xlabel('time [ms]') % x-axis label ylabel('Power [Watt]') % y-axis label % ping 4 ax4 = subplot(3,2,4); plot(ax4,p110(130300:142600)) title('Ping number 4') xlabel('time [ms]') % x-axis label ylabel('Power [Watt]') % y-axis label % ping 5 ax5 = subplot(3,2,5); plot(ax5,p110(163000:175600)) title('Ping number 5') xlabel('time [ms]') % x-axis label ylabel('Power [Watt]') % y-axis label %ylim(ax1,[0 1.8]) %ylim(ax2,[0 1.8]) %ylim(ax3,[0 1.8]) %ylim(ax4,[0 1.8]) %ylim(ax5,[0 1.8])