Ask Your Question
0

random polytopes

asked 9 years ago

Hi there,

Is there an easy way to generate random d-polytopes?

Thanks, Guillermo

Preview: (hide)

Comments

1

Well, you can generate random points and take their convex hull. This should be easy enough.

FrédéricC gravatar imageFrédéricC ( 9 years ago )

Note that generating random d-polytopes is a sensitive thing to do: you end up with probability 1-epsilon with a simplicial polytope, which may or may not be what you want to have.

jipilab gravatar imagejipilab ( 6 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 9 years ago

fidbc gravatar image

FrédéricC was right, it is easy enough. This tutorial was helpful too. You can tweak the example below to your suit your needs.

m=-5
M=5
dim = 3
P=Polyhedron( vertices=[ [randint(m,M) for i in range(dim)] for i in range(100)])
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 9 years ago

Seen: 928 times

Last updated: Oct 08 '15