Effacer les filtres
Effacer les filtres

How to compare results from three different programs together

1 vue (au cours des 30 derniers jours)
sneha sharma
sneha sharma le 7 Déc 2015
I have three programs (attached below). each calculates delay. now i want to plot a graph between delay versus number of nodes(rows) from the three programs together and thus compare them. plz help....

Réponses (1)

Thorsten
Thorsten le 7 Déc 2015
nodes = 100; % or how many nodes you want
d1 = dtdma2(nodes);
d2 = stdma2(nodes);
d3 = csma2(nodes);
plot(1:nodes, d1, 1:nodes, d2, 1:nodes, d3)

Catégories

En savoir plus sur Discrete Data Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by