신호처리 | 반전 성질 |
페이지 정보
작성자 cemtool 작성일14-04-23 15:07 조회12,053회 댓글0건본문
신호 의 실수부, 허수부가 구간에서 사이에 균일하게 분포된 복소수 불규칙 신호일 때, 반전 성질은 다음 코드로 확인해 볼 수 있다.
- ex3_11.cem
n = -5:10; x = rand(1,length(n)); k = -100:100; w = (pi/100)*k; % frequency between -pi and +piX = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x% folding propertyy = fliplr(x); m = -fliplr(n); % signal folding Y = y *Y = y*(exp(-j*pi/100)).^(m'*k); % DTFT of y// verification Y_check = fliplr(X); % X(-w) error = max(abs(Y-Y_check))error = max(abs(Y-Y_check)) // Difference
댓글목록
등록된 댓글이 없습니다.