stat_plot_delay_cdf

PURPOSE ^

SYNOPSIS ^

function stat_plot_delay_cdf(n,cdf_data,model,nb_mob,tmax,mhop,export,format)

DESCRIPTION ^

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function stat_plot_delay_cdf(n,cdf_data,model,nb_mob,tmax,mhop,export,format)
0002 
0003 figure(n)
0004 plot(repmat([0:size(cdf_data,2)-1],size(cdf_data,1),1)',cdf_data')
0005 grid  ('on')
0006 axis([0 tmax*10 0 1])
0007 xlabel('relative delay in sec')
0008 ylabel('nbr msg delivered / nb msg generated')
0009 % legend('20 users','50 users','100 users')
0010 title(sprintf('cdf´s of the relative delay for different coverages (%s model, %d users, %d min, %s)',model,nb_mob,tmax,mhop))
0011 if export == 1
0012     exportfig(gcf,[model '-' num2str(nb_mob) 'usr-delay-cdf-' mhop ],'color', 'cmyk','format',format);
0013 end

Generated on Sun 15-Aug-2004 22:13:10 by m2html © 2003