17 lines
258 B
Mathematica
17 lines
258 B
Mathematica
|
|
function Z = uplus(Y)
|
||
|
|
%UPLUS (overloaded)
|
||
|
|
|
||
|
|
if isa(Y,'blkvar')
|
||
|
|
Y = sdpvar(Y);
|
||
|
|
end
|
||
|
|
|
||
|
|
switch Y.typeflag
|
||
|
|
case {0,5}
|
||
|
|
Z = Y;
|
||
|
|
case {1,3,4}
|
||
|
|
error('Relational objects canot be manipulated')
|
||
|
|
otherwise
|
||
|
|
error('Please report internal bug in sdpvar/uplus')
|
||
|
|
end
|
||
|
|
|