Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/yalmip/YALMIP into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
johanlofberg committed Jun 22, 2023
2 parents fe4d0df + 885a173 commit cd462a9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions extras/@constraint/checkset.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function [p,d] = checkset(X)
% OBSOLETE USE CHECK

switch nargout
case 0
check(lmi(X));
case 1
p = check(lmi(X));
case 2
[p,d] = check(lmi(X));
end
11 changes: 11 additions & 0 deletions extras/@lmi/checkset.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function [p,d] = checkset(X)
% OBSOLETE USE CHECK

switch nargout
case 0
check(X);
case 1
p = check(X);
case 2
[p,d] = check(X);
end

0 comments on commit cd462a9

Please sign in to comment.