Use CDF for graph
이전 댓글 표시
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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!