Azzera filtri
Azzera filtri

Why I can't plot x = years , y = GDP

1 visualizzazione (ultimi 30 giorni)
Ghazi
Ghazi il 11 Giu 2024
Commentato: Ghazi il 12 Giu 2024

Risposta accettata

Walter Roberson
Walter Roberson il 11 Giu 2024
GDP.("YEARS")
retrieves the field Years from the GDP object, and displays the result (because you have no semi-colon on the line)
x=("YEARS")
assigns the string "YEARS" to x. This has nothing to do with GDP.("YEARS")
Perhaps you want
x = GDP.("YEARS");
y = GDP.("GDP");
plot(x, y)

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Tag

Prodotti


Release

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by