代码搜索:M

找到约 10,000 项符合「M」的源代码

代码结果 10,000
www.eeworm.com/read/347945/11625701

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/347945/11625960

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/347945/11626001

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/157968/11653500

m a.m

Fx=Exp[a]+Exp[a]*b*x+Exp[a]*(c+1/2*b^2)*x^2+Exp[a]*(d+b*c+1/6*b^3)*x^3+Exp[a]*(e+b*d+1/2*c^2+1/2*c*b^2+1/24*b^4)*x^4 Fx=exp[a+b*x+c*x^2+d*x^3+e*x^4] FX=Series[Fx,{x,0,5}] Fx=Normal[%] clear k
www.eeworm.com/read/157885/11658377

m a.m

z=[6.8828-1.8513i,2.8069-1.7684i,1;4.8935-1.6781i,5.9509-1.6098i,0.707;0.6651-1.2183i,1.1296-1.1877i,0]; v=[0;-0.0118i;-0.0167i]; inv(z)*v
www.eeworm.com/read/346772/11723728

m 级联.m

%----------------------------------------------------------------- % exa020807, for example 2.8.7 % to test tf2sos,sos2tf,zp2sos and sos2zp; %-------------------------------------------------------
www.eeworm.com/read/346459/11743027

m at.m

function [idx] = at(y,xs) % [idx] = at(y,xs) Return elements of y nearest to xs % AT is the inverse of the indexing paren operator. Ie, % % xs=y(idx) idx=at(y,xs) % % AT can for instance be used
www.eeworm.com/read/346459/11743040

m at.m

function I = at(x,f) % AT Return element index corresponding to a frequency value. % % I = AT(X,F) Return element index I at frequency location F in frequency % object X. % $Id: at.m 3 2004-02-04 1
www.eeworm.com/read/346459/11743054

m at.m

function I = at(x,f) % AT Return element index corresponding to a frequency value. % % I = AT(X,T) Return element index I at frequency location f in spectrum % object X. % $Id: at.m 119 2006-09-26
www.eeworm.com/read/346459/11743132

m at.m

function I = at(x,t) % AT Return element index corresponding to a time value. % % I = AT(X,T) Return element index I at time location t in time object X. % $Id: at.m 65 2005-05-16 07:06:26Z mairas