Ask Your Question

Revision history [back]

Is there any way to change the view box on a 3D graph?

var('z') E = EllipticCurve(QQ, [0,0,0,-1/4,0]) wp = E.weierstrass_p().laurent_polynomial() wpp = derivative(wp,z)

f = (lambda u,v: wp(u+iv).real(), lambda u,v: wp(u+iv).imag(), lambda u,v: wpp(u+i*v).imag())

parametric_plot3d(f, (0.001,3.74), (0.001,3.74))

I just want to look at [-1,1]x[-1,1]x[-1,1] I can't seem to find the option.

Is there any way to change the view box on a 3D graph?

I plotted:

var('z')
E = EllipticCurve(QQ, [0,0,0,-1/4,0])
wp = E.weierstrass_p().laurent_polynomial()
wpp = derivative(wp,z)

derivative(wp,z)

f = (lambda u,v: wp(u+iv).real(), wp(u+i*v).real(), lambda u,v: wp(u+iv).imag(), wp(u+i*v).imag(), lambda u,v: wpp(u+i*v).imag())

wpp(u+i*v).imag())

parametric_plot3d(f, (0.001,3.74), (0.001,3.74))

(0.001,3.74))

I just want to look at [-1,1]x[-1,1]x[-1,1] [-1,1] x [-1,1] x [-1,1], I can't seem to find the option.