Effacer les filtres
Effacer les filtres

I want to compute FFT of each segments from a 102400 length signal, where I consider the length of segment is 1024. Than store the amplitude and freq n separate array

3 vues (au cours des 30 derniers jours)
I want to compute FFT of each segments from a 102400 length signal, where I consider the length of segment is 1024. Than store the amplitude and freq n separate array?
Data file is attached and store in v1.
I tried the below code :
requiredArray = [];
meanRequiredArray = [];
sum = 0;
count = 1;
for k = v1
requiredArray = [requiredArray, k];
disp(requiredArray);
if numel(requiredArray) == 3
meanRequiredArray = [meanRequiredArray, (abs(fft(requiredArray)))];
requiredArray = [];
end
disp(numel(requiredArray));
end
SA= meanRequiredArray';
  3 commentaires
Matt J
Matt J le 11 Oct 2022
Modifié(e) : Matt J le 11 Oct 2022
Then I think I have given you a valid answer below.

Connectez-vous pour commenter.

Réponses (1)

Matt J
Matt J le 11 Oct 2022
Modifié(e) : Matt J le 11 Oct 2022
F=fft( reshape(input,1024,[]) ,[],1);
amplitude=abs(F);
phase=angle(F);

Catégories

En savoir plus sur Fourier Analysis and Filtering 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!

Translated by