1 | initial version |
This error can occur when you use simultaneous assignments. This returns error. @interact def _(a=-3, b=3,c=(-10,10),f=y^2*sin(y^c)): show(plot(f,(x,a,b)))
This does not: @interact def _(a=-3, b=3,c=(-10,10),f=y^2sin(y^c)): f=y^2sin(y^c)) show(plot(f,(x,a,b)))
2 | No.2 Revision |
This error can occur when you use simultaneous assignments. This returns error. @interact def _(a=-3, b=3,c=(-10,10),f=y^2*sin(y^c)): show(plot(f,(x,a,b)))
This does not: @interact def _(a=-3, b=3,c=(-10,10),f=y^2sin(y^c)): f=y^2sin(y^c)) show(plot(f,(x,a,b)))
3 | No.3 Revision |
This error can occur when you use simultaneous assignments. This returns error.
error.
@interact
def _(a=-3, b=3,c=(-10,10),f=y^2*sin(y^c)):
show(plot(f,(x,a,b)))
This does not:
@interact
def _(a=-3, b=3,c=(-10,10),f=y^2*sin(y^c)):
show(plot(f,(x,a,b))) This does not:
@interact
def _(a=-3, b=3,c=(-10,10),f=y^2sin(y^c)):
f=y^2*sin(y^c))
f=y^2sin(y^c))
show(plot(f,(x,a,b)))show(plot(f,(x,a,b)))