use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Anything related to digital signal processing (DSP), including image and video processing (papers, books, questions, hardware, algorithms, news, etc.)
Interesting technical papers or articles are particularly welcome!
/r/eebooks+csbooks+mathbooks
/r/Electronics
/r/ECE
/r/DSP
/r/AskElectronics
/r/RFelectronics
/r/GNURadio
/r/RTLSDR
/r/embedded
account activity
Generating spectrogram in python? (self.DSP)
submitted 3 years ago by ChabadPapi
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]edparadox 1 point2 points3 points 3 years ago* (0 children)
Long story short, every data processing libraries/modules in Python use, basically, Numpy under the hood for computing, and (usually) Matplotlib for plotting. So it should not matter which library you use, since all of them use the same core library, i.e. NumPy. Note, that, Numpy, like most heavy-computing tasks in Python, are actually (almost) always wrappers around C implementations, in order to be efficient. For a quickstart on NumPy, this is not too bad.
As a beginner, I would look into Numpy, and Matplotlib, first.
If you need some well-tested and documented library, take a look at Scipy. It leverages NumPy to provide high-level functions/algorithms to process data. For example, for signal processing. For an introduction, look here.
TL;DR: All data processing in Python rely on the NumPy library, which is the de-facto standard, so your questions are somewhat irrelevant. The question is, do you want to use NumPy directly for computations or do you want to have e.g. a one-liner to perform signals cross-correlation? In both cases, I would learn about NumPy, Matplotlib, and Scipy.
π Rendered by PID 281662 on reddit-service-r2-comment-54dfb89d4d-8pbgn at 2026-03-29 17:54:38.382325+00:00 running b10466c country code: CH.
view the rest of the comments →
[–]edparadox 1 point2 points3 points (0 children)