Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how to solve the problem given in j prokaris text book fundamentals of communication system chapter 2.computer problems 2.3 and 2.5
조회 수: 1 (최근 30일)
이전 댓글 표시
% MATLAB script for Computer Problem 2.3. df=0.01; fs=10; ts=1/fs; t=[−5:ts:5]; x1=zeros(size(t)); x1(41:51)=t(41:51)+1; x1(52:61)=ones(size(x1(52:61))); x2=zeros(size(t)); x2(51:71)=x1(41:61); 10 [X1,x11,df1]=fftseq(x1,ts,df); [X2,x21,df2]=fftseq(x2,ts,df); X11=X1/fs; X21=X2/fs; f=[0:df1:df1*(length(x11)−1)]−fs/2; plot(f,fftshift(abs(X11))) figure plot(f(500:525),fftshift(angle(X11(500:525))),f(500:525),fftshift(angle(X21(500:525))),’--’)
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!