how can i plot graph one above another with same X-axis and changing Y-axis(attaching a rough model i need)
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i want to plot one above another. X-axis scale is constant, but Y-axis changing..
0 Commenti
Risposte (1)
Wayne King
il 20 Feb 2014
Modificato: Wayne King
il 20 Feb 2014
X = randn(100,3);
X(:,2) = X(:,2)+10;
X(:,3) = X(:,3)+20;
subplot(311)
plot(X(:,1));
ax1 = gca;
set(ax1,'xtick',[]);
set(ax1,'xcolor','white')
subplot(312);
plot(X(:,2));
ax2 = gca;
set(ax2,'xtick',[]);
set(ax2,'xcolor','white')
subplot(313);
plot(X(:,3));
1 Commento
chaman lal dewangan
il 12 Dic 2017
Modificato: chaman lal dewangan
il 12 Dic 2017
Answer is subplot function in matlab. Following link answers clearly. https://in.mathworks.com/help/matlab/ref/subplot.html
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!