Subplots with multiple axes
Mostra commenti meno recenti
I am trying to plot a figure with four subplots. This is what I am entering but it is only producing one graph. Any advice?
n=1:10;
subplot(1,10,n);
plot(x,y,'.-');
subplot(1,10,n);
semilogx(x,y);
subplot(1,10,n);
semilogy(x,y);
subplot(1,10,n);
loglog(x,y);
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Subplots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!