12 lines
547 B
Matlab
12 lines
547 B
Matlab
function [] = plotAvgServiceTime()
|
|
|
|
plotGenericResult(1, 5, 'Service Time (sec)', 'ALL_APPS', '');
|
|
plotGenericResult(1, 5, {'Service Time for';'Birbnetes App (sec)'}, 'BIRBNETES', '');
|
|
|
|
plotGenericResult(2, 5, 'Service Time on Edge (sec)', 'ALL_APPS', '');
|
|
plotGenericResult(2, 5, {'Service Time on Edge';'for Birbnetes App (sec)'}, 'BIRBNETES', '');
|
|
|
|
plotGenericResult(3, 5, 'Service Time on Cloud (sec)', 'ALL_APPS', '');
|
|
plotGenericResult(3, 5, {'Service Time on Cloud';'for Birbnetes App (sec)'}, 'BIRBNETES', '');
|
|
|
|
end |