source: PlatformSupport/matperf/server/dataParser.m

Last change on this file was 951, checked in by chunter, 16 years ago

adding matperf

  • Property svn:executable set to *
File size: 486 bytes
Line 
1load temp_matperf_data
2
3close all
4bandWidthMatrix = reshape(report.bandwidth,14,1);
5figure(1)
6plot(report.req_bandwidth(1:14).*1e-6,bandWidthMatrix.*1e-6,'-o','LineWidth',2)
7xlabel('Requested Bandwidth (Mbps)');
8ylabel('Achieved Bandwidth (Mbps)');
9axis tight
10%legend('200','400','600','800','1000','1200','1400')
11%legend('200','800','1400');
12%  figure(2)
13%  percentage = 100 * (result.losses./result.totalpackets);
14%  new_percentage = reshape(percentage, 20,4);
15%  plot(new_percentage)
Note: See TracBrowser for help on using the repository browser.