필터 지우기
필터 지우기

When making frequency domain to time domain signal what is the best procedure to get the sampling time from the frequency range?

조회 수: 4 (최근 30일)
I have a 16*16*751 matrix signal and the frequency range is from .5GHz to 2 GHz. I convert the signal from freqency domain to time domain using IFFTSHIFT(IFFT(x(f))). Now, I need the time samples for this converted signals.
  댓글 수: 2
Star Strider
Star Strider 2021년 7월 14일
Getting the sampling time from the Fourier transform is only possible if you know that the maximum frequency is the Nyquist frequency. The sampling frequency is two times that, and the sampling time is the inverse of the sampling frequency.
If you do not know with absolute certainty that the highest frequency of the Fourier traqnsform is the Nyquist frequency, the sampling interval will forever remain a mystery.
Sazid Hasan
Sazid Hasan 2021년 7월 14일
Thank you very much for your Answer. I would like to know if the highest frequency is 2 GHz and lowest frequency is .5 GHz and what will be the time interval and also how to calculate the starting time to end time from that freqency values?
Thank you very much.

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

채택된 답변

Walter Roberson
Walter Roberson 2021년 7월 14일
The frequency domain signal has 751 entries. Assuming the first entry is the DC component, then that leaves 750 entries for frequencies, half positive frequencies and half negative. So 750/2 = 375 frequency bins, covering 2 GHz, gives
format long g
2e9/375
ans =
5333333.33333333
hertz per bin, or
375 / 2e9
ans =
1.875e-07
seconds per sample.
  댓글 수: 2
Sazid Hasan
Sazid Hasan 2021년 7월 14일
if I take signals half for for positive and half for negative, time values will be linspace(-t,t,751). Am i correct? and if i take for both postivite and negative values, do i need to use IFFTSHIFT?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by