|
|||
Hey people, been mucking around with Differentiated Parabolic Waveforms for a while now - and quite amazed by its simplicity and versatility. Obviously - it's inferior to all the blips,blams and bleps - but as a c++ and mathematical noob, I think it is probably the easiest qausi bandlimiting technique out there - even wavetables isn't so easy to implement - and even harder to "populate" with anything 'custom',IMHO.
Sofar, I've done: Standard Saw, Standard Pulse, Standard Triangle, Vintage(rounded) Saw, Pulse-Width Saw, Pulse-Width Triangle, Exponential Triangle, Soft Saw (nearly same harmonic slope as triangle), Vintage Saw to Fake sine morph(can maybe morph Saw-Sine-Triangle). Strangely enough - after reading alot of old digital synth manuals - some of these shapes have popped up(more than once) - especially stuff from Roland Inanyway, any other papers/blogs out there that has more info on DPW? Especially related to making other shapes - apart from a standard Saw & Triangle? Or, I'll show you mine and you show me yours? (Except if you're under-age |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa | ||
|
|||
You can make anything with DPW using samples, ie you simply pre-integrate a wavetable then differentiate it on playback. For the ones you made, which order did you use, and care to share your formulas? Richard |
|||
| ^ | Joined: 19 Dec 2010 Member: #245936 | ||
|
|||
Richard_Synapse wrote: You can make anything with DPW using samples, ie you simply pre-integrate a wavetable then differentiate it on playback...
Good idea, but I'm a noob - all my stuff works with a simple counter i.e. a good old saw. Richard_Synapse wrote: For the ones you made, which order did you use, and care to share your formulas?
All are first order (I did mention simplicity A DPW triangle: a= abs(saw) - 0.5;//centre it around zero b = a * abs(a);//parabole c = a - b; d = differentiate(c); Now a DPW "Vintage saw": a1 = abs(saw) - 0.5; a2 = a1 * a1;//parabole b = a2 * a2;//another parabole c = b - a2; d = differentiate(c); output will be one octave higher though, so freq/2. All my waveshapes are simple variations of the above - the pulse-width saw and pulse-width triangle are even a tad cheesier - all can be written in 5 lines or less - like the above. Also - thinking of the roland thing - it does make some sense - memory was expensive in those old mashines. |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa | ||
|
|||
Cool, I'll try it...what is the pulse-width triangle? Here's how you do any shape. Take a buffer of say 2048 samples with whatever shape you want in it. Then simply add up the 2048 samples from first to last (this is the integration step). This gives you a new set of 2048 samples, and of course you do this prior to runtime and only once. Now using your terminology the realtime output is then simply d = differentiate( buffer[i] ); where 'i' is between 0..2047 in this example and corresponds to your 'saw' variable. You probably want to use interpolation, but the above will work for a start. Richard |
|||
| ^ | Joined: 19 Dec 2010 Member: #245936 | ||
|
|||
Richard_Synapse wrote: Cool, I'll try it...what is the pulse-width triangle?
Not sure if it completely qualifies as "pulse-width"
Can make it assymetrical, but the aliasing creeps back a bit. |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa | ||
|
|||
seems the amplitude varies a lot based on frequency. Do you know if there is a precise way to compensate for this?
cheers, oli |
|||
| ^ | Joined: 23 Jun 2002 Member: #3139 Location: York, UK | ||
|
|||
Yes, you simply divide the output by frequency (more precisely, the phase increment). If you use higher order DPWs, be sure to use doubles, otherwise you'll quickly run into numerical issues.
Richard |
|||
| ^ | Joined: 19 Dec 2010 Member: #245936 | ||
|
|||
thanks, that works. Anyone know if a quasi-bandlimited saw-triangle morph can be achieved with this approach? |
|||
| ^ | Joined: 23 Jun 2002 Member: #3139 Location: York, UK | ||
|
|||
Ichad.c wrote: Richard_Synapse wrote: Cool, I'll try it...what is the pulse-width triangle?
Not sure if it completely qualifies as "pulse-width"
Can make it assymetrical, but the aliasing creeps back a bit. Technically, anything that isn't a pulse can't *really* have a pulsewidth, a more technically accurate term might be "duty cycle" as it appears to be speeding up each excursion and introducing a relaxation period (essentially the triangle works twice as fast so it can go on holiday at the end of the week But yeah, pulsewidth is just one of those terms that has become a catch-all term and it's not overly technical, so I'd stick with that. |
|||
| ^ | Joined: 20 Jul 2010 Member: #236000 | ||
|
|||
hibrasil wrote: thanks, that works. Anyone know if a quasi-bandlimited saw-triangle morph can be achieved with this approach?
Probably not - the DPW saw and DPW tri - are two different approaches, there might be another 'different morph' available. I still haven't done the gain compensation for my non-bandlimited saw-tri morph(unity parabole method) yet - anybody want to share their formula? I'm still going to try and do a saw-tri morph with DPW though - if I can find a way around the "abs" function in the DPW triangle case - it should be doable - I think. Random note - has anybody seen the "triangle mod" of the Roland JP-8080? Page 66 of the manual. That's simple interger wrap around |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa | ||
|
|||
The Triangle Mod wave is pretty interesting, but the parameter range is WAY too small. Actually, the diagrams in the manual overstate the variance in the waveform you can produce. Some softsynths like Zebra, Zeta, Helix etc can do a much better job giving you a nice full sweep, some can even wrap the wave multiple times.
More interesting I found was the regular Triangle wave in the JP:
Unlike the Triangle Mod waves, these diagrams match the synth output precicely, and it's a really weird and interesting transform that I haven't seen implimented anywhere else. Notice that in the middle position the waveform's already lost it's symmetry as well as changed tension. It's great for making intricate but soft sounds. |
|||
| ^ | Joined: 20 Jul 2010 Member: #236000 | ||
|
|||
i have aproximated both the trianglemod and triangle from the jp-8000 (based on audio recordings from, Sendy the trianglemod is basically funky math and modulo the triangle was much harder, it required a funky shaper
and after i looked a bit more into this shaper, i wonder - maybe they used THAT same shaper for the weird shape of the sawtooth (in the supersaw) here's some audio: https://www.box.com/s/nbpl1zuxkxx7rkc4d548 btw, thanks Sendy for the very precious audio recordings from the jp8000 ;] ---- It doesn't matter how it sounds.. ..as long as it has BASS and it's LOUD! |
|||
| ^ | Joined: 04 Sep 2006 Member: #118997 Location: 127.0.0.1 | ||
|
|||
Interisting waveshaper antto! Guess there is truly different ways to skin a cat! Don't know if we are refering to the same 'supersaw' - but a shaper on that seems unlikely - the odd supersaw shape comes from the phase of the tracking HP, IMHO.
P.S. What software did you use for you expession evaluator? It looks cool. |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa | ||
|
|||
Ichad.c wrote: Interisting waveshaper antto! Guess there is truly different ways to skin a cat! Don't know if we are refering to the same 'supersaw' - but a shaper on that seems unlikely - the odd supersaw shape comes from the phase of the tracking HP, IMHO.
exactly that shape, but i strongly don't think they actually use a HP filter tracking the oscillator frequency this shaper can be bent to give that same waveform Quote: P.S. What software did you use for you expession evaluator? It looks cool. uhm.. mIRC EDIT: here, using the same shape you get this which looks pretty much like one of the jp8000 supersaws ![]() ---- It doesn't matter how it sounds.. ..as long as it has BASS and it's LOUD! |
|||
| ^ | Joined: 04 Sep 2006 Member: #118997 Location: 127.0.0.1 | ||
|
|||
antto wrote: Ichad.c wrote: Interisting waveshaper antto! Guess there is truly different ways to skin a cat! Don't know if we are refering to the same 'supersaw' - but a shaper on that seems unlikely - the odd supersaw shape comes from the phase of the tracking HP, IMHO.
exactly that shape, but i strongly don't think they actually use a HP filter tracking the oscillator frequency this shaper can be bent to give that same waveform Hmmm, interisting hypothesis. Does your "shaper" explain the theoretically reduced aliasing below the fundamental? And what do you feed it with - a naive saw or something else? |
|||
| ^ | Joined: 08 Feb 2012 Member: #274678 Location: South - Africa |
| KVR Forum Index » DSP and Plug-in Development | All times are GMT - 8 Hours |
|
Printable version |
Disclaimer: All communications made available as part of this forum and any opinions, advice, statements, views or other information expressed in this forum are solely provided by, and the responsibility of, the person posting such communication and not of kvraudio.com (unless kvraudio.com is specifically identified as the author of the communication).
Powered by phpBB © phpBB Group







