I’m trying to implement an S-Curve - centered around 0.5 - in Curve designed to mimic the logarithmic behaviour of a fader where you have more control around 0.
Curve equation I have found is the Logistic Function which requires a/(1+e^(-b(x-0.5)), however this definitely doesn’t look right in GP!
Slight addendum - realised that it should be x-50, not x-5 and that a needs to be 100 rather than 1, and also that exp() works in the formula editor, which gives:
y = 100/(1+exp(-b*(x-50)))
With b set to 0.1 that gives this in curve designer:
I’ve managed to do it easily using the Sheets method and just adding a lot of points; the smooth function does a superb job!
So problem technically solved, but it still feels like either exponents don’t work or I’m not using the curve designed correctly, as that equation should work and allow the slope/centre to be adjusted by the a/b parameters