stft for complex data

4 vues (au cours des 30 derniers jours)
nur dsc
nur dsc le 6 Avr 2021
Hello,
I have I and Q signals and want to see my data in frequency domain. So is there any way to get stft of I and Q signals in complex form ?
Thanks.
  2 commentaires
Mathieu NOE
Mathieu NOE le 6 Avr 2021
hello
I and Q are real valued data ? not complex I assume , so you can do stft of each one
nur dsc
nur dsc le 6 Avr 2021
Hello,
No, applying stft for each one is not useful to get frequency domain response effectively.

Connectez-vous pour commenter.

Réponses (1)

Bjorn Gustavsson
Bjorn Gustavsson le 6 Avr 2021
Shouldn't that be as simle as:
Acmplx = I + 1i*Q;
spec = fft(Acmplx); % or spectrogram etc
HTH
  2 commentaires
nur dsc
nur dsc le 12 Avr 2021
Hi,
If you have orijinal x signal you can use hilbert(x).
result = hilbert(x)
then you can apply stft to result.
result_updated = stft(result)
But thanks for answer :)
Bjorn Gustavsson
Bjorn Gustavsson le 12 Avr 2021
What is the I and Q signals you have? Explicitly.
If you have the original signal there is no need to Hilbert-transform before doing the STFT-analysis.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Acoustics, Noise and Vibration 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