@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?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.