importTrace('Energy_Data/ping90.lvm') power=data; p90=moving(power,10); figure; %plot(p90) % ping 1 ax1 = subplot(3,2,1); plot(ax1,p90(5000:17500)) 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,p90(37500:51000)) 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,p90(70400:83000)) 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,p90(103000:118000)) 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,p90(133700:148500)) 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])