Re: [Csnd] Question rev how to create a ramp waveform vs saw
Date | 2022-09-20 22:15 |
From | Scott Daughtrey |
Subject | Re: [Csnd] Question rev how to create a ramp waveform vs saw |
Thank you both for the reply. I'm ok for now with a straight lfo in this specific case but knowing how to use an osc as opposed to an lfo will probably be useful in the future. To Dave, the waveform was already positive but your suggesting worked great, just in reverse. instr Ramp aSig = lfo(2, 20, 4) out aSig + -1 endin Thank you both, I very much appreciate the help. Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2022-09-21 09:33 |
From | Victor Lazzarini |
Subject | Re: [Csnd] [EXTERNAL] [Csnd] Question rev how to create a ramp waveform vs saw |
you can combine all in a single expression aSig = lfo(2, 20, 4) - 1 ======================== Prof. Victor Lazzarini Maynooth University Ireland > On 20 Sept 2022, at 22:15, Scott Daughtrey |
Date | 2022-09-21 13:08 |
From | ST Music |
Subject | Re: [Csnd] [EXTERNAL] [Csnd] Question rev how to create a ramp waveform vs saw |
Thank you for the tip Victor. I started learning to code just over a month ago and have never studied programming so this is all quite new to me. Tips are always welcome! Scott Daughtrey SToons Music https://soundcloud.com/stoons-1 https://youtube.com/channel/UCGhwmkS1uWmX6mhTIQ0IDsg On Wed, Sep 21, 2022, 4:33 AM Victor Lazzarini, <Victor.Lazzarini@mu.ie> wrote: you can combine all in a single expression |