slewing max numbers
It might be very basic question but I stuck in doing so:
How can I slew max numbers tht controling a fader:
Thanks
tons of options, but assuming that the question is specifically about the line object.
well, interpolation between quantized input values already works, which you can see when using 2000ms instead of 20ms.
now the question is which kind of additional delay/hysteresis and which type of additional curve/distortion of those subranges between current value and next value you are looking for?
I'm looking for interpolation between two values that will avoid the producing of clicks (for controling an amplitude)
using [$1 20) into [line~] is working great but when using line without the ~ sign it is not happening as it should
because it can not.
you must use something that smooths signal, not numbers
you could use both in parallel, line for the slider and and line~ for the DSP part, but it will still click when the direction changes.
to smooth control signals you´d use lowpass filtering such in onepole~ or slide~.
if you want to smooth numbers with line you can use a metro :
i'm not so sure it's possible to smooth numbers without a metro somewhere (or gen)

it kinda works without a metro but not really
This approach stores the previous value so that line always starts at the right place. (Note that you can still get discontinuities if the new values arrive before the line is finished.)