fix(docs/math/poly/fft.md):typo fix in the Fourier Transform (#4508)

pull/4509/head
jiang1997 2022-12-13 11:04:53 +08:00 committed by GitHub
parent fb92e5ae07
commit 6cc2ad4d86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,13 +33,13 @@ $$
设 $f(t)$ 是关于时间 $t$ 的函数,则傅里叶变换可以检测频率 $\omega$ 的周期在 $f(t)$ 出现的程度:
$$
F(\omega)=\mathbb{F}[f(t)]=\int_{-\infty}^{\infty}f(t)e^{-iwt}dt
F(\omega)=\mathbb{F}[f(t)]=\int_{-\infty}^{\infty}f(t)e^{-i{\omega}t}dt
$$
它的逆变换是
$$
f(t)=\mathbb{F}^{-1}[F(\omega)]=\frac{1}{2\pi}\int_{-\infty}^{\infty}F(\omega)e^{iwt}dt
f(t)=\mathbb{F}^{-1}[F(\omega)]=\frac{1}{2\pi}\int_{-\infty}^{\infty}F(\omega)e^{i{\omega}t}d\omega
$$
逆变换的形式与正变换非常类似,分母 $2\pi$ 恰好是指数函数的周期。