Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Ranging the Z axis

Hello,

I am plotting an Arrangement of Hyperplanes. Like this one:

H3.<x,y,z> = HyperplaneArrangements(QQ) A = H3([(1,2,1), 0], [(-4,-3,-2), 0],[(3,3,-2), 0], [(1,-4,3), 0],[(-2,2,1), 0])

A.plot(ranges=[[-1, 1], [-1, 1]],aspect_ratio=[1,1,0.25])

but the Problem is I need the z Axis ranges from -1 to 1 not from -4 to 4.

Is there a way to change that?

Best regards

Lars

Ranging the Z axis

Hello,

I am plotting an Arrangement arrangements of Hyperplanes. hyperplanes. Like this one:

H3.<x,y,z>

H3.<x, y, z> = HyperplaneArrangements(QQ)
A = H3([(1,2,1), 0], [(-4,-3,-2), 0],[(3,3,-2), 0], [(1,-4,3), 0],[(-2,2,1), 0])

H3([(1, 2, 1), 0], [(-4, -3, -2), 0], [(3, 3, -2), 0], [(1, -4, 3), 0], [(-2, 2, 1), 0]) A.plot(ranges=[(-1, 1), (-1, 1)], aspect_ratio=(1, 1, 0.25))

A.plot(ranges=[[-1, 1], [-1, 1]],aspect_ratio=[1,1,0.25])

but the Problem The problem is I need the z Axis ranges axis to range from -1 to 1 not from -4 to 4.

Is there a way to change that?

Best regards

Lars

Ranging the Z axis

I am plotting arrangements of hyperplanes. Like this one:

H3.<x, y, z> = HyperplaneArrangements(QQ)
A = H3([(1, 2, 1), 0],
       [(-4, -3, -2), 0],
       [(3, 3, -2), 0],
       [(1, -4, 3), 0],
       [(-2, 2, 1), 0])
A.plot(ranges=[(-1, 1), (-1, 1)], aspect_ratio=(1, 1, 0.25))

Hyperplane arrangement

The problem is I need the z axis to range from -1 to 1 not rather than from -4 to 4.

Is there a way to change that?