代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/473219/6848833
m is.m
function YESNO = is(F,property)
%IS Check property of constraint.
% d = IS(x,property) returns 1 if 'property' holds
%
% Properties possible to test are: 'elementwise', 'sdp',
% 'socc',
www.eeworm.com/read/473219/6848857
m and.m
function sys = and(X,Y)
%AND Overloaded
%
% See also LMI
% Author Johan L鰂berg
% $Id: and.m,v 1.3 2005/02/04 10:10:26 johanl Exp $
% TODO : Check if binaries etc
if isa(X,'sdpvar')
www.eeworm.com/read/473219/6848906
m or.m
function varargout = or(varargin)
%OR (overloaded)
% Author Johan L鰂berg
% $Id: or.m,v 1.3 2005/04/29 16:28:03 joloef Exp $
% Models OR using a nonlinear operator definition
switch class(
www.eeworm.com/read/473219/6848914
m and.m
function F = and(X,Y)
% Internal class for constraint list
% Author Johan L鰂berg
% $Id: and.m,v 1.2 2004/07/19 13:54:35 johanl Exp $
if isa(X,'sdpvar')
X = true(X);
end
if isa(Y,'sdpvar
www.eeworm.com/read/473219/6848918
m not.m
function X = not(X)
% Internal class for constraint list
% Author Johan L鰂berg
% $Id: not.m,v 1.1 2004/06/17 08:40:02 johanl Exp $
superiorto('sdpvar');
superiorto('double');
% Try to eval
www.eeworm.com/read/473219/6849104
m or.m
function varargout = or(varargin)
%OR (overloaded)
%
% z = or(x,y)
% z = x | y
%
% The OR operator is implemented using the concept of nonlinear operators
% in YALMIP. X|Y defines a ne
www.eeworm.com/read/473219/6849154
m is.m
function YESNO = is(X,property,additional)
%IS Check property of variable.
% d = IS(x,property) returns 1 if 'property' holds
%
% Properties possible to test are: 'real', 'symmetric', 'hermiti
www.eeworm.com/read/473219/6849209
m and.m
function varargout = and(varargin)
%ANd (overloaded)
%
% z = and(x,y)
% z = x & y
%
% The AND operator is implemented using the concept of nonlinear operators
% in YALMIP. X|Y defines
www.eeworm.com/read/473219/6849214
m not.m
function varargout = not(varargin)
%NOT (overloaded)
%
% y = not(x)
% y = ~x
%
% Short for y = 1-x.
%
% It is assumed that x is a binary variable (either explicitely declar
www.eeworm.com/read/473057/6854440
m a.m
A =[
0 1 1 0 1 0 1 0 1
0 0 0 0 1 1 1 1 1
1 1 1 1 1 0 1 0 0
1 1 0 0 1 1 0 0 1
1 0 0 1 1 1 0 0 0
1 1 1 0 0 1 0 1 0
0 1 0 0 0 1 1 1 1
0 1 0 0 1 1 1 1 1
0 1 0 0 0 1 1 1 1
1 0 1 1