projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add /usr/local/lib/faustine and /usr/lib/faustine to preprocessor import path.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
examples
/
notch.dsp
1
import("maxmsp.lib");
2
3
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
4
F = hslider("Freq", 1000, 100, 10000, 1);
5
Q = hslider("Q", 1, 0.01, 100, 0.01);
6
7
process(x) = notch(x,F,G,Q);
8