代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/205307/15321141
m m_conv.m
%m_conv is an extension to MATLAB's conv, where more
%arguments are allowed, which means that under such
%the convolution of more than two vectors can be
%obtained at the same time.
%Copyright
www.eeworm.com/read/204456/15339355
m m_paths.m
function [l,p] = m_paths(A,n)
% [l,p] = m_paths(A,n)
%
% n paths, with maximum length, in a graph which is
% described by an adjacency matrix A
%
% INPUT
% A weighted adjacency matrix
%
% OUTPUTS
www.eeworm.com/read/203319/15361935
m conv_m.m
function [y,ny]=conv_m(x,nx,h,nh)
%Modified convolution routine for signal processing
%ny=support of y;
nyb=nx(1)+nh(1);
nye=nx(length(x))+nh(length(h));
ny=[nyb:nye];
y=conv(x,h);
www.eeworm.com/read/200258/15436062
m huber_m.m
function out=Huber_M(r,b)
% this is a Huber M estimatin function
% b is the cut-off value
% r^2/2 if abs(r)b
%
if abs(r)
www.eeworm.com/read/112799/15476576
m kbp.m.m
% kbp.m - bandpass FIR filter design using Kaiser window.
%
% h = kbp(fs, fpa, fpb, fsa, fsb, Apass, Astop, s)
%
% s = 1, -1 = standard, alternative design
% dbp(wa, wb, N) = ideal bandpass FIR filter
www.eeworm.com/read/106153/15645812
gif m-m.gif
www.eeworm.com/read/103618/15727508
m m_henon.m
function [x,y]=m_henon(n)
x=zeros(1,n);y=zeros(1,n);
for k=1:n-1
x(k+1)=1+y(k)-1.4*x(k)^2;
y(k+1)=0.3*x(k);
end
www.eeworm.com/read/101839/15804768
gif m-m.gif
www.eeworm.com/read/477233/6740410
m test chebwin.m and kaiser.m.m
%----------------------------------------------------------------------------
% exa070900.m, for fig. 7.9.1,
% to test chebwin.m and kaiser.m,
%-------------------------------------------------
www.eeworm.com/read/346772/11723841
m test chebwin.m and kaiser.m.m
%----------------------------------------------------------------------------
% exa070900.m, for fig. 7.9.1,
% to test chebwin.m and kaiser.m,
%-------------------------------------------------