Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a system of inequalities Ab >= 0, where A is a n by p matrix, b and 0 are vectors of length p and n, respectively. Is there a package or function in R that would return the solution region? Or something like the upper and lower limits for each entry in b?

I've checked out this post, but the solution in the answer only seems to return a p-tuple solution for b. Thanks.

question from:https://stackoverflow.com/questions/65946081/solution-region-of-a-system-of-inequalities-in-r

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
532 views
Welcome To Ask or Share your Answers For Others

1 Answer

"Or something like the upper and lower limits for each entry in b?"

This can be done by solving 2p LPs:

for i in 1:p do
   solve LP: min b[i] subject to Ab >= 0
   solve LP: max b[i] subject to Ab >= 0

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...