[sage-support] Re: Variable plot limits

2009-03-11 Thread mark mcclure
On Mar 10, 1:10 pm, roleic wrote: > In integrals variable integration limits work fine with sage. > Now I would like to plot the variable integration range with plot3d or > parametric_plot3d using variable plot range limits: > > u,v = var('u v') > parametric_plot3d([u, v, u*0.1], (u, 0, 6), (v, 0

[sage-support] Re: Variable plot limits

2009-03-11 Thread Jason Grout
roleic wrote: > Thanks Jason, > now I tried to implement such a True/False function in order to > multiply it with the actual plot function to carve out the wanted plot > region. > Below I defined the function as a callable object as requested by the > plot command. > In a print test the function

[sage-support] Re: Variable plot limits

2009-03-11 Thread roleic
Thanks Jason, now I tried to implement such a True/False function in order to multiply it with the actual plot function to carve out the wanted plot region. Below I defined the function as a callable object as requested by the plot command. In a print test the function works well. But when used in

[sage-support] Re: Variable plot limits

2009-03-10 Thread Jason Grout
roleic wrote: > In integrals variable integration limits work fine with sage. > Now I would like to plot the variable integration range with plot3d or > parametric_plot3d using variable plot range limits: > > u,v = var('u v') > parametric_plot3d([u, v, u*0.1], (u, 0, 6), (v, 0, u)) > > But I get