4 lines
81 B
Mathematica
4 lines
81 B
Mathematica
|
|
function [A,b] = randpolytope(n,m)
|
||
|
|
|
||
|
|
A = randn(n,m);
|
||
|
|
b = m*rand(n,1)-A*randn(m,1);
|