I am aware any set
$$ \mathbb{S} = \{x\in\mathbb{R}^n | A x \leq b\} $$
where $A\in\mathbb{R}^{q\times n}$, $q\in \mathbb{R}^q$ is convex, yet there is no guarantee it's also non-empty. Is there any convenient way to construct a nonempty (random!) Polyeder?
Right now, I am building some full rank Matrix $B=e^C$ by using $e^C e^{-C} = I$ is always invertible (hence full rank) and $C=rand(m)$ MATLAB rand with $m=max(n,q)$ and reducing $B$ to the desired dimenions of $A$. It works, yet using this method one has to check for non-emptiness, solving a Linear Feasibility Problem.
Later on, I'd like to construct some set
$$ \mathbb{Q} = \{x\in\mathbb{R}^n | A x \leq b, C x = d\} $$
which also needs to be random and non-empty. Thanks for your help. Please be kind, engineers are not mathematicians.