Unrecognized table variable name 'time'

18 ビュー (過去 30 日間)
MOHAMMAD ABDUL MOKTADIR CHOWDHURY
MOHAMMAD ABDUL MOKTADIR CHOWDHURY 2021 年 3 月 27 日
Hi, I want to plot a time space diagram showing speed. First row is postmile (yvar), first row, first column is time (xvar), and other value are cvar.
I have writhe the readtable function. In workspace time table is there but I got the following error message:
My code and error message:
Snapshot of my heatmap3.csv file
Could you please advise what's wrong wiht my code?
Thanks

採用された回答

Walter Roberson
Walter Roberson 2021 年 3 月 27 日
Your csv file happears to have no header line, so the variable names created are Var1, Var2, and so on.
You are also attempting to color according to an array, not according to a single variable.
time = T{2:end,1};
postmile = T{1,2:end};
speed = T{2:end,2:end};
h = heatmap(time, postmile, speed);
  3 件のコメント
Walter Roberson
Walter Roberson 2021 年 3 月 27 日
time = T{2:end,1};
postmile = T{1,2:end};
speed = T{2:end,2:end}.';
h = heatmap(time, postmile, speed);
MOHAMMAD ABDUL MOKTADIR CHOWDHURY
MOHAMMAD ABDUL MOKTADIR CHOWDHURY 2021 年 3 月 27 日
Thanks a lot Walter
Its workig now

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

その他の回答 (1 件)

MOHAMMAD ABDUL MOKTADIR CHOWDHURY
MOHAMMAD ABDUL MOKTADIR CHOWDHURY 2021 年 3 月 27 日
Thanks a lot Walter.
It is working now.

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by