how can I plot in a such a way the x axis is in interval 10 10E2 10E3 10E4.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SAHIL SAHOO
am 1 Jan. 2023
Beantwortet: Stephen23
am 1 Jan. 2023
OrderParameter= [0.266 0.267 0.280 0.340];
Time = [10 1E2 1E3 1E4];
figure(1)
plot(Time,OrderParameter,'linewidth',2)
ylabel("OrderParameter")
xlabel("Time")
grid on
set(gca,'fontname','times New Roman','fontsize',18,'linewidth',1.8);
0 Kommentare
Akzeptierte Antwort
Stephen23
am 1 Jan. 2023
Use SEMILOGX:
Y = [0.266,0.267,0.280,0.340];
X = [1e1,1e2,1e3,1e4];
semilogx(X,Y)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line 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!