I do not know how could i change the subplot in figure 2 to look the same as figure 1
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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? 

댓글 수: 2
KALYAN ACHARJYA
2020년 5월 5일
It would be better, if you can provide the code.
VLADUT-VASILE HADAR
2020년 5월 5일
답변 (1개)
Mehmed Saad
2020년 5월 5일
편집: Mehmed Saad
2020년 5월 5일
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

댓글 수: 3
VLADUT-VASILE HADAR
2020년 5월 5일
KALYAN ACHARJYA
2020년 5월 5일
Please accept the answer if it has been resolved. Is the y-scale in 3rd subplot??
Mehmed Saad
2020년 5월 5일
편집: Mehmed Saad
2020년 5월 5일
Yes, 3rd subplot needs shift and rescale also. We are leaving it to you VLADUT-VASILE HADAR
이 질문은 마감되었습니다.
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!