importTrace('Energy_Data/ping70.lvm') power=data; p70=moving(power,10); figure; %plot(p70) % ping 1 ax1 = subplot(3,2,1); plot(ax1,p70(1800:14000)) 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,p70(34500:48200)) 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,p70(67200:79700)) 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,p70(147700:161000)) 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,p70(213000:225400)) 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])