Help with axis on a plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Emily
am 1 Mär. 2019
Beantwortet: Yasasvi Harish Kumar
am 1 Mär. 2019
I am needing to plot the function of a monthly increase in bank balance but need the x-axis in years instead of months and am wondering how to achieve this.
0 Kommentare
Akzeptierte Antwort
Yasasvi Harish Kumar
am 1 Mär. 2019
Hi,
All you have to do is divide your x-axis by 12.
For example:
plot(x,y) %gives you the axis in months
Change this to,
x = x/12;
plot(x,y)
I hope that fixes your issue.
Regards
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!