Plotting a total vs day of the week

2 次查看(过去 30 天)
How can i plot day of the week (e.g monday, tuesday, wednesday...) vs total number if i have the data for fisrt week in April, e.g 1 200, 2, 300, 3, 150, 4 600, 5 200, 6 500, 7 225?
  4 个评论
Gerard Dukhoo
Gerard Dukhoo 2020-4-10
I can plot the first graph ok, but need to plot the second one.
darova
darova 2020-4-10
What about this little trick?
x = 0:7;
y = sin(x);
plot(x,y)
datetick('x','ddd')

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by