| 1 | initial version |
You can certainly nest interacts so that the first input modifies the second:
@interact
def _(P=input_box(20, width=6, label="power(dBm)")):
@interact
def _(V=input_box(P+107, width=6, label="voltage(dBuV)")):
show('P=',P)
show('V=',V)
Example output here. I don't think the vice versa part is currently possible.
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.