Hey everyone...
I'm trying to do a soft saturation distortion module using the fexpr~ object.. but for some reason i'm getting a syntax error when I enter the following:
fexpr~ (($x1/(pow((abs(pow$x1, 2))+1))), 0.5)
Any ideas? Thanks!
Soft Saturation Distortion using fexpr~
Hey everyone...
I'm trying to do a soft saturation distortion module using the fexpr~ object.. but for some reason i'm getting a syntax error when I enter the following:
fexpr~ (($x1/(pow((abs(pow$x1, 2))+1))), 0.5)
Any ideas? Thanks!
does this what you want?
fexpr~ $x1/pow((abs(pow$x1, 2)+1)), 0.5)
Hmm.. nope... still giving me an error!
I think you have to many parenthesis. And you don't need [fexpr~] for that.
[expr~ $v1/pow((abs(pow($v1, 2))+1), .5)]
Gah! That's it!
And I could've sworn that I had done that exact same thing a billion times.... sometimes you just need a fresh pair of eyes
thanks!
Oops! Looks like something went wrong!