Dynamic-Calibration/utils/YALMIP-master/extras/binary.m

8 lines
153 B
Mathematica
Raw Permalink Normal View History

2019-12-18 11:25:45 +00:00
function x = binary(x)
%BINARY Overloaded
if isempty(x)
x = [];
else
error('BINARY can only be applied to SDPVAR objects or empty doubles');
end