Dynamic-Calibration/utils/YALMIP-master/extras/@constraint/getcutflag.m

6 lines
97 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
function c = getcutflag(X)
c = [];
for i = 1:length(X.clauses)
c = [c;X.clauses{i}.cut];
end