Hi
The tool allows constraints to be specified in the following format
A = [0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0]'
b = [0.0]
Yc = HPolytope(A, b)
What if I want multiple constraints to be satisfied simultaneously? Can A have multiple rows and b be a column vector? For instance, can we have the following requirement on the outputs?
A = [0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0;
1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0]'
b = [0.0, 1.0]
Yc = HPolytope(A, b)
Thanks!
Hi
The tool allows constraints to be specified in the following format
What if I want multiple constraints to be satisfied simultaneously? Can
Ahave multiple rows andbbe a column vector? For instance, can we have the following requirement on the outputs?Thanks!