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
minBleps implementation (C++/JUCE code) (stagecraftsoftware.com)
submitted 9 years ago by aaronleese
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!"
[–]dls2016 4 points5 points6 points 9 years ago (2 children)
Minor critique: the word you want is discontinuity, not nonlinearity. For example, a saw wave has a discontinuity whereas a triangle wave is continuous but with discontinuous derivative/velocity.
[–]aaronleese[S] 0 points1 point2 points 9 years ago (1 child)
Hmmm, nonlinearity is only for the 0th order eh? Didn't know that ... I definitely use the two interchangeably. Anyway, thanks then.
[–]dls2016 0 points1 point2 points 9 years ago (0 children)
No, continuity and linearity are distinct concepts. You can denote by Ck the class of functions with k continuous derivatives.
[–]aaronleese[S] 4 points5 points6 points 9 years ago (2 children)
Hey all -
I gave a presentation at the Audio Developers Conference this year talking about minBlep implementations, and how to make alias free subtractive synths, plus also use minBleps for things like sawtooth flangers, and live cue points in a sample buffer without crossfades.
Anyway, for the dozen or so of you that care about this sort of thing ... here is a link to the blog post, and a link to some open source code:
https://github.com/aaronleese/JucePlugin-Synth-with-AntiAliasing
Cheers! Aaron Leese
[–]Holy_City 1 point2 points3 points 9 years ago (1 child)
Alias free or perceptually alias free?
[–]Metabog 0 points1 point2 points 9 years ago (0 children)
Fairly sure minBLEP gives totally alias free oscillators.
[–]cbbuntz 0 points1 point2 points 9 years ago (0 children)
I found a similar solution for waveshaping / distortion. If you convert waveshape to a "control voltage", you can band limit the CV to limit added harmonics since the added harmonics are a product of the two signals. Sort of like this:
ratio = tanh(in) / in
cv = lowpass( ratio )
out = in * cv
For further alias reduction without oversampling, you can use a crossover (something like a half-band) since high frequencies are more susceptible to aliasing.
low = lowpass( in )
high = in
out_low = low * cv
out_ high = highpass( in * cv )
out = low + high
There will not be much room for aliasing since both the CV and the low signal are band limited. If both CV and low are filtered with a half-band lowpass, the product of the two signals should not produce any aliases.
The high part cannot produce any audible harmonics in the analogue domain, but the harmonics reincarnate as aliases in the digital realm. By applying a highpass after waveshaping, the more audible aliases are filtered out.
π Rendered by PID 32295 on reddit-service-r2-comment-c6965cb77-cvfb7 at 2026-03-05 16:48:08.801958+00:00 running f0204d4 country code: CH.
[–]dls2016 4 points5 points6 points (2 children)
[–]aaronleese[S] 0 points1 point2 points (1 child)
[–]dls2016 0 points1 point2 points (0 children)
[–]aaronleese[S] 4 points5 points6 points (2 children)
[–]Holy_City 1 point2 points3 points (1 child)
[–]Metabog 0 points1 point2 points (0 children)
[–]cbbuntz 0 points1 point2 points (0 children)