2 x axis log scale and 1 y axis
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Khaled aL Qattawi
am 2 Jun. 2022
Bearbeitet: Khaled aL Qattawi
am 2 Jun. 2022
i wanna plot like the attached graph, please someone help me write the code of this.

0 Kommentare
Akzeptierte Antwort
Chunru
am 2 Jun. 2022
% generate some data
dollarlost = logspace(4, 12, 81);
p3 = 1e5./dollarlost;
p2 = 1e4./dollarlost;
p1 = 1e3./dollarlost;
loglog(dollarlost, p1, 'g-', dollarlost, p2, 'b--', dollarlost, p3, 'r:')
grid on
ylim([1e-7, 1])
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations 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!
