clc;clear all; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Reading data from a file %Note that time is in micro seconds and packetsize is in Bytes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% [packet_no_p, time_p, packetsize_p] = textread('poisson1.data', '%f %f %f'); %%%%%%%%%%%%%%%%%%%%%%%%%Exercise 1.2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %The following code will generate Plot 1; You generate Plot2 , Plot3. %Hint1: For Plot2 and Plot3, you only need to change 'initial_p', the % initial time in microseconds, and 'ag_frame', the time period of % aggregation %Hint2: After adding Plot2 and Plot3 to this part, you can use 'subplot(3,1,2);' % and 'subplot(3,1,3);' respectively to show 3 plots in the same figure. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% figure(1); jj=1; i=1; initial_p=0; ag_time=1000000; bytes_p=zeros(1,100); while time_p(jj)<=initial_p jj=jj+1; end while i<=100 while ((time_p(jj)-initial_p)<=ag_time*i && jj