How to plot y-axies?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear all, Could help me please about how to plot y-axies as seen in the figure below:
Thanks...

0 Kommentare
Antworten (2)
skysky2000
am 15 Mär. 2017
1 Kommentar
Rik
am 15 Mär. 2017
What code are you using, because I get the axis you need with the code below:
x=[250 500 600 700 780];
y=[16 8 4 2 1];
semilogy(x,y)
set(gca,'YTick',[1 2 4 8 16])
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!
