Dynamic-Calibration/utils/YALMIP-master/extras/@ncvar/rank.m

26 lines
889 B
Mathematica
Raw Permalink Normal View History

2019-12-18 11:25:45 +00:00
function varargout=rank(varargin)
%RANK (overloaded)
% *************************************************************************
% This file defines a nonlinear operator for YALMIP
% Rank is a bit non-standard, so don't look here to learn
% % ***********************************************************************
switch class(varargin{1})
case 'double'
% SHOULD NEVER HAPPEN, THIS SHOULD BE CAUGHT BY BUILT-IN
error('Overloaded SDPVAR/RANK CALLED WITH DOUBLE. Report error')
case 'sdpvar'
varargout{1} = yalmip('addextendedvariable',mfilename,varargin{1});
case 'char'
varargout{1} = ([]);
properties = struct('convexity','none','monotonicity','none','definiteness','none');
varargout{2} = properties;
varargout{3} = varargin{3};
otherwise
error('Strange type on first argument in SDPVAR/RANK');
end