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

 Accepted Answer

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)

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Release

R2024a

Tags

Asked:

on 11 Jun 2024

Commented:

on 12 Jun 2024

Community Treasure Hunt

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

Start Hunting!