Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
I do not know how could i change the subplot in figure 2 to look the same as figure 1
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, i am struggling to get a sinusoid like in the first Figure, the second subplot. Figure 1 is what i have to do and figure 2 is what i did. How could i change the things so it can look like that? ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/290422/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/290422/image.jpeg)
2 commentaires
Réponses (1)
Mehmed Saad
le 5 Mai 2020
Modifié(e) : Mehmed Saad
le 5 Mai 2020
nume='Hadar';
L=length(nume);
n=50*L;
F=1;
Fs=1000;
durata=2;
t=0:1/Fs:durata;
A1=2;
s1=A1*sin(2*pi*F*t);
A2=2 ;
fi0=-pi/3;
s2=A2*sin(2*pi*F*t+fi0);
s3=A1*sin(2*pi*F*t)+A2*sin(2*pi*F*t+fi0);
figure(2)
subplot(3,1,1)
plot(t,s1,'r')
ylabel('Amplitudine')
xlabel('timp(s)')
title('Semnal s1')
ylim([-A1-0.5, A1+0.5])
grid on
subplot(3,1,2)
plot(t,s2+1,'m')% change here
ylabel('Amplitudine')
xlabel('timp(s)')
title('Semnal s2')
ylim([-1.5 3.2]) % change here
grid on
subplot(3,1,3)
hold on
plot(t,s3)
ylabel('Amplitudine')
xlabel('timp(s)')
title('Semnal s3=s1+s2')
plot(t(n),s3(n),'^','MarkerFaceColor',[0 0.9 0],'MarkerEdgeColor',[0 0.9 0])% Change here
yline(0,'k')
hold off
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/290424/image.png)
3 commentaires
KALYAN ACHARJYA
le 5 Mai 2020
Please accept the answer if it has been resolved. Is the y-scale in 3rd subplot??
Mehmed Saad
le 5 Mai 2020
Modifié(e) : Mehmed Saad
le 5 Mai 2020
Yes, 3rd subplot needs shift and rescale also. We are leaving it to you VLADUT-VASILE HADAR
Cette question est clôturée.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!