setting the step of x and y axes
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm looking for the way to set the step of x and y axes. does it exist a way?
1 Kommentar
Akzeptierte Antwort
Azzi Abdelmalek
am 18 Okt. 2012
Bearbeitet: Azzi Abdelmalek
am 18 Okt. 2012
t=0:0.1:10
y=cos(t)
plot(t,y)
set(gca,'xtick',linspace(min(t),max(t),8),'ytick',linspace(min(y),max(y),8))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks 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!