append one graph to another
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aditya
il 18 Feb 2014
Commentato: Azzi Abdelmalek
il 19 Feb 2014

Hi guys, How to append one graph to another? Tried using 'hold on' but it doesn't work. Thanks.
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 18 Feb 2014
Modificato: Azzi Abdelmalek
il 18 Feb 2014
Use plotyy
% Example
x=0:0.01:10
y1=sin(x)
y2=100*cos(x)
plotyy(x,y1,x,y2)
4 Commenti
Azzi Abdelmalek
il 19 Feb 2014
Look at this example
close
clear
n=10
f=cos(0.1*(1:n)).^2
for k=n+1:n+10
fin1(k-n)=sin(0.1*k)
fin2(k-n)=cos(0.2*k)
end
plot(1:n,f,'b');
hold on
plot(n+1:n+10,fin1,'r')
plot(n+1:n+10,fin2,'r')
hold off
Più risposte (1)
Mischa Kim
il 19 Feb 2014
You mean something along the lines of:
x1 = 1:50; x2 = 1:10; x3 = 1:10;
y1 = rand(1,50); y2 = rand(1,10); y3 = rand(1,10);
x = [x1 x2+x1(end) x3+x1(end)+x2(end)];
y = [y1 y2 y3];
plot(x,y)
0 Commenti
Vedere anche
Categorie
Scopri di più su Axis Labels 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!