ScriptNode: Filter Node with Filter Order
-
I'll be needing to design some measurement tools and it would be incredibly beneficial to be able to just dial in and change filter order with a parameter instead of relying on complex networks of one-pole filters and careful bypassing of nodes in a dynamic environment.
Ideally I'm looking at a filter node with a Filter Order parameter.
What's the best way to approach this?
I have a network here that I suppose I can compile into a node, but then I lose on the visuals. Plus, is this fine or it is a bit crazy? I'm basically doing a
output = input >= x
for each cable expr node and routing each one to a different one pole filter, and as the FilterOrder parameter increases, filteres come online. -
@aaronventure I would also really like to know this. I have an interesting idea for a filter plugin but I have very little knowledge on filter design : (
Would love more tools in HISE for filtering!
Orders would be great, for surgical filtering. -
@aaronventure how do you mean you lose the visuals?
-
Hhow would I write in the cable expr node Output = Input if it is greater than or equal to 2 AND less than 4... so far I have:
input >= 2 && < 4;
But getting a parsing error.
-
@DanH no int in expr nodes - it's snex
And it should be: input >= 2.0 & & input < 4.0