0001 function stat_plot_delay_prctile(n,prctile_data,model,nb_mob,tmax,mhop,threshold,plot_type,export,format)
0002
0003 figure(n)
0004 plot([5:5:100],prctile_data,plot_type);
0005
0006 grid ('on')
0007 xlabel('coverage in %')
0008 ylabel('relative delay in sec')
0009
0010 title(sprintf('%d%% percentile of the relative delay (%s model, %d users, %d min, %s)',threshold*100,model,nb_mob,tmax,mhop))
0011 if export == 1
0012 exportfig(gcf,[model '-' num2str(nb_mob) 'usr-delay-' num2str(threshold*100) '%prctile-' mhop ],'color', 'cmyk','format',format);
0013 end