plot not displaying figure
1 ビュー (過去 30 日間)
表示 古いコメント
i have table which has datetime and sub_metering_1 as two variables on table. I wrote code to plot the figure but it is not showing
if (data_useful.DateTime.Hour==8)
figure()
plot(DateTime, Sub_metering_1)
end
回答 (1 件)
Saravanakumar Chandrasekaran
2021 年 5 月 2 日
You are trying to a logical check for data_useful.DateTime.Hour==8. so at all times it is getting failed.
in the suggestion provided by dpb, you have wrongly included ==
i.e., the line should be
isa = (data1.DateTime.Hour==8)
i hope if u correct the above line ,it will work.
0 件のコメント
参考
カテゴリ
Find more on Logical in Help Center and File Exchange
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!