@interact
def _(a=((0.1)..(5.00))):
...
show(pl1+pl2+pl3+pl4);
I would like 'a' to be iterated by the step 0.1, and not 1.
How can I achieve this?
1 | initial version |
@interact
def _(a=((0.1)..(5.00))):
...
show(pl1+pl2+pl3+pl4);
I would like 'a' to be iterated by the step 0.1, and not 1.
How can I achieve this?
2 | No.2 Revision |
@interact
def _(a=((0.1)..(5.00))):
...
show(pl1+pl2+pl3+pl4);
I would like 'a' to be iterated by the step 0.1, and not 1.
How can I achieve this?