Can I plot semilogx, semilogy, loglog plots simultaneously by writing in code in a single m file?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
NILADRI SEKHAR MANDAL
il 30 Gen 2016
Modificato: Stephen23
il 30 Gen 2016
I have the following code in an m file :
x = linspace(0,10);
y=x.^3;
semilogx(x,y);
semilogy(x,y);
loglog(x,y);
This gives the last plot only. How do I get the rest of the plots?
1 Commento
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!