how to implement delay to a real signal and calculate its conj complex ,i have an algorithm but it is very slow
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Walter Roberson
le 16 Déc 2011
That has more undefined and uncommented variables than we should be expected to understand the purpose of.
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Time-Frequency Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!