DOES ANYONE KNOW HOW CAN INSERT AND PLOT THIS DATA AS POINTS?

2 Ansichten (letzte 30 Tage)
Pul
Pul am 21 Jul. 2021
Kommentiert: Pul am 23 Jul. 2021
Hello everyone,
when I go to plot the column 11 of the table "Data" any point appears in my graph.
Data of column 11 should be related to their years as in the table.
plot(T.Year(:,1),[NEW, T.Var4(:,1) DATA.SMB_mp_mm(:,1)],'g');
Could anyone help me kindly?
Thank you!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Jul. 2021
You need
plot(T.Year(:,1),[NEW, T.Var4(:,1) DATIMARannuali.SMB_mp_mm(:,1)],'g');
However, your other variables have 7721 rows, but SMB_mp_mm only has 40 rows, so it is not clear what you would want to plot.
  3 Kommentare
Walter Roberson
Walter Roberson am 22 Jul. 2021
Change to
plot(T.Year(:,1),[NEW, T.Var4(:,1)], 'g', datetime(DATIMARannuali.Year,1,1), DATIMARannuali.SMB_mp_mm,'k-*');
hold off

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by