Use CDF for graph
Mostrar comentarios más antiguos
Hi everyone,
I have this graph that shows the serial time of transimation data for 10000 rounds (x is time and y is the number of rounds). How can I use CDF in this graph?
figure
subplot(3,1,1)
plot(1:Simulation,OverallTotalDelayArrOptimalEnv(2,:),'r--');
title('E2ET-(kkk) #50 Nodes')
xlabel('Rounds');
ylabel('Time (ms)');
grid on
subplot(3,1,2)
plot(1:Simulation,OverallTotalDelayArrOriginalEnv(2,:),'k-.');
title('E2ET-(bbb) #50 Nodes')
xlabel('Rounds');
ylabel('Time (ms)');
grid on
subplot(3,1,3)
plot(1:Simulation,OverallTotalDelayArrShortEnv(1,:),'b');
title('E2ET-(bbb) #50 Nodes')
xlabel('Rounds');
ylabel('Time (ms)');
grid on
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!