how to implement delay to a real signal and calculate its conj complex ,i have an algorithm but it is very slow
조회 수: 1 (최근 30일)
이전 댓글 표시
for m = 1:N
s = zeros(1,N2m1);
s(N-(m-1):N2m1-(m-1)) = F; %try applying window here
s = conj(fliplr(s)).*s;
s = s(1:N);
tfft = abs(fft(s));
end
please suggest me a different method because i have to work it out on atleast 500000 samples together but this algorithm works for only 5000 samples at a time
댓글 수: 2
Walter Roberson
2011년 12월 16일
That has more undefined and uncommented variables than we should be expected to understand the purpose of.
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Time-Frequency Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!