please solve problem index increase matrix dimension.
조회 수: 1 (최근 30일)
이전 댓글 표시
%%%Total energy consumption
NumberOfNodes=225;
Etotal_DBR=0;
et=0
plot(NumberOfNodes(1:10:end),Etotal_DBR(1:225),'r--o','LineWidth',2)
xlabel('NumberOfNodes')
ylabel('Total Energy consumption in joules')
title('Total Energy consumption of the network')
hold on
legend('DBR' ,'Etotal_DBR')
axis([0 500 0 1200])
plot(x,y)
grid on
hold off
댓글 수: 1
KSSV
2017년 8월 10일
Your NumberOfNodes, Etotal_DBR are scalars (single number) and in plot you are treating them as a vector....
참고 항목
카테고리
Help Center 및 File Exchange에서 Constants and Test Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!