代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/193277/8242722
m or.m
function varargout = or(varargin)
%OR (overloaded)
% Author Johan L鰂berg
% $Id: or.m,v 1.8 2006/05/14 17:21:09 joloef Exp $
% Models OR using a nonlinear operator definition
switch class(
www.eeworm.com/read/193277/8242740
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/193277/8242744
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/193277/8243169
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/193277/8243288
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/193277/8243487
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/193277/8243500
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/192856/8269330
m a.m
close all;
clear all;
%初始化,n为量化级数
mu=input('Please enter the value MU:');
if isempty(mu)
mu=255;
end;
n=input('Please enter the qualify level n:');
if isempty(n)
n=8;
end;
dt=0.01;
www.eeworm.com/read/393211/8304680
m 偶极子.m
function pdemodel
[pde_fig,ax]=pdeinit;
pdetool('appl_cb',1);
set(ax,'DataAspectRatio',[1.5 1 1]);
set(ax,'PlotBoxAspectRatio',[1 1 1]);
set(ax,'XLim',[-1.5 1.5]);
set(ax,'YLim',[-1 1]);
set(ax,'XTick
www.eeworm.com/read/293183/8310362
m or.m
function c = or(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d | b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a | b.d;
else
c = a.d | b.d;
end
return