代码搜索:M

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

代码结果 10,000
www.eeworm.com/read/140169/13099459

gif m-m.gif

www.eeworm.com/read/139367/13159823

m ga.m.m

% GA.m % 生成初始种群 tic M=[1 2 3 4 5 6 7 8 9 10;1 3 5 10 4 2 7 6 8 9;2 1 4 3 9 6 8 7 10 5;2 3 1 5 7 9 8 4 10 6;3 1 2 6 4 5 9 8 10 7; 3 2 6 4 9 10 1 7 5 8;2 1 4 3 7 6 10 9 8 5;3 1 2 6 5 7 9 10 8 4;
www.eeworm.com/read/139007/13195414

m gs_m.m

function [Q, R] = gs_m(A) %GS_M Modified Gram-Schmidt QR factorization. % [Q, R] = GS_M(A) uses the modified Gram-Schmidt method to compute the % factorization A = Q*R for m-by-n A
www.eeworm.com/read/139007/13195500

m gs_m.m

vti_encoding:SR|utf8-nl vti_timelastmodified:TR|11 Aug 2002 11:43:46 -0000 vti_extenderversion:SR|4.0.2.6513
www.eeworm.com/read/325107/13227000

m m_seq.m

function [seq]=m_seq(connections); m=length(connections); % m 位反馈移位寄存器长度 L=2^m-1; % m序列长度 registers=[zeros(1,m-1) 1]; seq(1)=registers(m); for i=2:L reg_cont(1)=connections
www.eeworm.com/read/138239/13247905

m freqz_m.m

function [db,mag,pha,w]=freqz_m(b,a); [H,w]=freqz(b,a,1000,'whole'); H=(H(1:1:501))'; w=(w(1:1:501))'; mag=abs(H); db=20*log10((mag+eps)/max(mag)); pha=angle(H);
www.eeworm.com/read/322356/13381795

m freqz_m.m

function[db,mag,pha,w]=freqz_m(b,a); [H,w]=freqz(b,a,59000,'whole'); H=(H(1:1:(59000/2+1)))'; w=(w(1:1:(59000/2+1)))'; mag=abs(H); db=20*log10((mag+eps)/max(mag)); pha=angle(H);
www.eeworm.com/read/321955/13392269

m m_qam.m

% =============================================% % Programed by Rustam Efendi, STTTelkom Bandung. % efendi_rustam@yahoo.com % Open for correction or any comments. % ===============================
www.eeworm.com/read/319871/13440846

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/317833/13495920

m freqs_m.m

function [db,mag,pha,w] = freqs_m(b,a,wmax); % Computation of s-domain frequency response: Modified version % ------------------------------------------------------------ % [db,mag,pha,w] = freqs_m