edgecloudsim/scripts/birbnetes/matlab/plotAvgFailedTask.m

12 lines
650 B
Mathematica
Raw Normal View History

2021-04-05 20:54:58 +02:00
function [] = plotAvgFailedTask()
plotGenericResult(1, 2, 'Failed Tasks (%)', 'ALL_APPS', 'percentage_for_all');
2021-04-19 16:05:35 +02:00
plotGenericResult(1, 2, {'Failed Tasks for';'Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_all');
2021-04-05 20:54:58 +02:00
plotGenericResult(2, 2, 'Failed Tasks on Edge (%)', 'ALL_APPS', 'percentage_for_all');
2021-04-19 16:05:35 +02:00
plotGenericResult(2, 2, {'Failed Tasks on Edge';'for Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_all');
2021-04-05 20:54:58 +02:00
plotGenericResult(3, 2, 'Failed Tasks on Cloud (%)', 'ALL_APPS', 'percentage_for_all');
2021-04-19 16:05:35 +02:00
plotGenericResult(3, 2, {'Failed Tasks on Cloud for';'Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_all');
2021-04-05 20:54:58 +02:00
end