代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/431675/8662051
m and.m
function c = and(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
www.eeworm.com/read/287770/8670261
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/287770/8670275
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/287770/8670291
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/287770/8670396
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
www.eeworm.com/read/287770/8670448
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 signal
% object X.
% $Id: at.m 119 2006-09-26 12:28:25Z ma