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

1 回表示 (過去 30 日間)
Ghazi
Ghazi 2024 年 6 月 11 日
コメント済み: Ghazi 2024 年 6 月 12 日

採用された回答

Walter Roberson
Walter Roberson 2024 年 6 月 11 日
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)
  1 件のコメント
Ghazi
Ghazi 2024 年 6 月 12 日
thank you bro

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by