Slider for fractions of pi
I'd like to have in @interact a slider for (0,2pi) with stepsize 0.05pi that shows as label α and the current value only in the format x∗π
Wouldn't a slider for xr∈[0 1] and a label reporting "\alpha = 2\pi{}".format(x)
do the job ? Of course, in the computation, you'd have to use α=xr⋅2π. So what ?
The current value from the sliderr is displayed to the right of the sliderr - that would show the value of x_r, but I should like to see there that value augmented by ⋅2⋅π.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 5 years ago
Seen: 248 times
Last updated: Aug 23 '19
So make a slider from 0 to 2 with step size 0.05 and then multiply that
x
bypi
. Did you have some trouble doing that? What did you try?