interact variable print formatting
Hello,
Say that I have a simple interact function shown as below:
@interact
def myplot(u=(0.5,(0.1,10)), R=(20e-6,(20e-6,1000e-6))):
#plotting code
Is there a way to print formatting of these variables in the interact zone; 2 digit float for u and e-form for the R. Currently I see both variables as many digit outputs.
Thanks.
As you pointed out, same question at http://ask.sagemath.org/question/926/decimal-places-in-slider - just for reference for anyone else coming.