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
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
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
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