plot all dates to x-axis in bar graph
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MakM
am 10 Nov. 2022
Beantwortet: Cris LaPierre
am 10 Nov. 2022
d = datetime(2017,1:20,1);
x = rand(1,20);
bar(d,x)
I have this code, I want all the 20 dates to be visible on the x axis, but only 4 months are visible, what can I add in the code to get all the dates on the x-axis.
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 10 Nov. 2022
d = datetime(2017,1:20,1);
x = rand(1,20);
bar(d,x)
xticks(d)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Bar Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!