Hello everyone, I'm new to Sagemath and Python in general, so forgive me if this is trivial.
I am trying to create one slider, which can control several functions, which are all based on the same variable, at the same time, here's an example
def function_a(x): return x + 1
def function_b(x): return x + 2
mySlider = widgets.FloatSlider(min=0.1, max=10.0, step=0.1, value=1.0) interact(function_a(x),function_b(x), x=mySlider) # calling both functions in interact is not allowed
Me and friends from university tried for several hours now, with no satisfying result. The example is just to ilustrate the challenge, we never expected it to work.
Thanks in advance!