Created
August 3, 2022 07:55
-
-
Save mouseos/db8ebff0f7a675ccf0661d07a96295ff to your computer and use it in GitHub Desktop.
c-quam modulator written in faust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import("stdfaust.lib"); | |
pilot=os.oscsin(25)/4; | |
freq=50000; | |
cquam (l,r)=((l+r+1)*(os.oscsin(freq))/4)+(l-r)*(((os.osccos(freq))/4)); | |
process=cquam; | |
//Modulate c-quam at 50KHz. This program cannot use for radio broadcast. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment