필터 지우기
필터 지우기

stft for complex data

조회 수: 5 (최근 30일)
nur dsc
nur dsc 2021년 4월 6일
댓글: Bjorn Gustavsson 2021년 4월 12일
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
Mathieu NOE
Mathieu NOE 2021년 4월 6일
hello
I and Q are real valued data ? not complex I assume , so you can do stft of each one
nur dsc
nur dsc 2021년 4월 6일
Hello,
No, applying stft for each one is not useful to get frequency domain response effectively.

댓글을 달려면 로그인하십시오.

답변 (1개)

Bjorn Gustavsson
Bjorn Gustavsson 2021년 4월 6일
Shouldn't that be as simle as:
Acmplx = I + 1i*Q;
spec = fft(Acmplx); % or spectrogram etc
HTH
  댓글 수: 2
nur dsc
nur dsc 2021년 4월 12일
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 2021년 4월 12일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by