Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit503a66d

Browse files
committed
fix inverse fourier transform equation
1 parent2cb973d commit503a66d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎content/frequency_domain.rst‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,19 +119,19 @@ Mathematically, the "transform" we use to go from the time domain to the frequen
119119
..math::
120120
X(f) =\int x(t) e^{-j2\pi ft} dt
121121
122-
For a signal x(t) we can get the frequency domain version, X(f), using this formula. We will represent the time domain version of a function with x(t) or y(t), and the corresponding frequency domain version with X(f) and Y(f). Note the"t" for time, and"f" for frequency. The"j" is simply the imaginary unit. You may have seen it as"i" in high school math class. We use "j" in engineering and computer science because "i" is often referring to current, and in programming it's often used as an iterator.
122+
For a signal:math:`x(t)` we can get the frequency domain version,:math:`X(f)`, using this formula. We will represent the time domain version of a function with:math:`x(t)` or:math:`y(t)`, and the corresponding frequency domain version with:math:`X(f)` and:math:`Y(f)`. Note the:math:`t` for time, and:math:`f` for frequency. The:math:`j` is simply the imaginary unit, you may have seen it as:math:`i` in high school math class. We use "j" in engineering and computer science because "i" is often referring to current, and in programming it's often used as an iterator.
123123

124-
To return to the time domain from frequency is almost the same, aside from ascaling factor andnegative sign:
124+
To return to the time domain from frequency is almost the same, aside from a negative sign:
125125

126126
..math::
127-
x(t) =\frac{1}{2\pi}\int X(f) e^{j2\pi ft} df
127+
x(t) =\int X(f) e^{j2\pi ft} df
128128
129-
Note that a lot of textbooks and other resources use:math:`w` in place of the:math:`2\pi f`.:math:`w` is angular frequency in radians per second, while:math:`f` is in Hz. All you have to know is that
129+
Note that a lot of textbooks and other resources use:math:`w` in place of the:math:`2\pi f`, where:math:`w` is angular frequency in radians per second, while:math:`f` is in Hz. All you have to know is that
130130

131131
..math::
132132
\omega =2\pi f
133133
134-
Even though it adds a:math:`2\pi` term to many equations, it's easier to stick with frequency in Hz. Ultimately you willwork with Hz inyour SDRapplication.
134+
Even though it adds a:math:`2\pi` term to many equations, it's easier to stick with frequency in Hz, as wework with Hz inmost SDRand RF signal processing applications.
135135

136136
The above equation for the Fourier Transform is the continuous form, which you will only see in math problems. The discrete form is much closer to what is implemented in code:
137137

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp