please solve problem index increase matrix dimension.

3 Ansichten (letzte 30 Tage)
Junaid Qadir
Junaid Qadir am 10 Aug. 2017
Bearbeitet: José-Luis am 10 Aug. 2017
%%%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 Kommentar
KSSV
KSSV am 10 Aug. 2017
Your NumberOfNodes, Etotal_DBR are scalars (single number) and in plot you are treating them as a vector....

Melden Sie sich an, um zu kommentieren.

Antworten (1)

José-Luis
José-Luis am 10 Aug. 2017
Bearbeitet: José-Luis am 10 Aug. 2017
Both NumberOfNodes and Etotal_DBR are scalars and it seems that you want to treat them as arrays and actually do some indexing.
That ain't gonna jive.
For the obsessive: I realize a scalar is a 1x1 array.

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by