Use CDF for graph
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!