TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A gentle introduction to the FFT (2002)

83 点作者 tigerlily超过 3 年前

7 条评论

roland35超过 3 年前
The coolest application of an FFT I implemented was for a custom oxygen sensor for a wearable breath measuring device. The sensor would flash a blue light at about 40 kHz, and there was a phosphorescent dye which would flash orange with a phase lag that changed based on temperature and oxygen level.<p>Using an FFT we could get that phase lag at 40 kHz and back out the % oxygen in exhaled breath! Typical oxygen sensors at the time were not anywhere near fast enough to do that.
评论 #28945467 未加载
shermozle超过 3 年前
3Blue1Brown has an amazing visual explanation which would go well with this: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=spUNpyF58BY" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=spUNpyF58BY</a>
评论 #28941742 未加载
评论 #28946246 未加载
nayuki超过 3 年前
The article doesn&#x27;t explain much; for example it doesn&#x27;t cover the algebra that allows the FFT to run in O(n log n) time.<p>I recommend instead &quot;The Scientist and Engineer&#x27;s Guide to Digital Signal Processing&quot;: <a href="https:&#x2F;&#x2F;www.dspguide.com&#x2F;pdfbook.htm" rel="nofollow">https:&#x2F;&#x2F;www.dspguide.com&#x2F;pdfbook.htm</a>
hasmanean超过 3 年前
If you’re new to signal processing, then just remember that the basic algorithm of spectral analysis is the DFT and the FFT is just a clever way to compute it by skipping all the redundant operations.<p>The DFT is trivial.
评论 #28943573 未加载
评论 #28942949 未加载
secondcoming超过 3 年前
The FFT can be computed&#x2F;visualised with a lens [0]. Quite cool<p>[0] <a href="https:&#x2F;&#x2F;youtu.be&#x2F;Y9FZ4igNxNA?t=567" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;Y9FZ4igNxNA?t=567</a>
评论 #28942674 未加载
sydd超过 3 年前
I loved this explanation of FFT, full with interactive examples and it makes it also easy to understand how the JPEG compression utilizes FFT <a href="https:&#x2F;&#x2F;www.jezzamon.com&#x2F;fourier&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.jezzamon.com&#x2F;fourier&#x2F;</a> AKA how can you represent an image with Fourier transformations
dls2016超过 3 年前
And of course Gauss discovered the FFT even before Fourier published about heat transfer.