MATLAB 2019b Update 1 Function semilog doesn't work on macOS Catalina
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Yiqian Qian
am 26 Okt. 2019
Kommentiert: Star Strider
am 27 Okt. 2019
When i am trying to plot semilog figures, the semilog* function works as no difference with the normal plot function.
My system is macOS Catalina, MATLAB version is 2019b update 1.
0 Kommentare
Akzeptierte Antwort
Star Strider
am 26 Okt. 2019
It could be that your data values are not much different, so semilogx or semilogy may not seem different.
To test that hypothesis, try this and see if there is a difference between the figures:
x = linspace( 1, 10,10);
y = logspace(-2, 2, 10);
figure
plot(x, y)
grid
figure
semilogy(x, y)
grid
Experiment to get the result you want.
12 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!