I am trying to plot sets like $$\left\{x \in \mathbb R ^3 : x_1,x_2,x_3 \geq 0, x_i \leq x_j + x_k \mbox{for all combinations of }i,j,k \in \{1,2,3\} \right\}$$ with MATLAB to include the figures in a document I am writing and I could not find a nice way to do this. Does anyone know how to do it?
Thanks for any help.
plot3. However, I think you'll first need to better define the set numerically. For instance, are there uncountably many elements? If so, how could you ever hope to plot it? Or is it a shape of some sort, so that you could plot it using patches? You can always define a 3-D meshgrid and just test every point. Of course, that's just a discrete approximation of a subset of this set since you'll have to set upper and lower limits and define only a finite set of points. Regardless, more specificity is needed. – AnonSubmitter85 Aug 06 '14 at 01:44