代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/248638/12549674
m m3_fig.m
clear;fb=500;fc=2000;fs=12000;Ac=1;
for i=1:30
for k=1:100
d4=randint(1,300,4);d8=randint(1,300,8);
s2=ask4(d4,fb,fc,fs,Ac);s3=ask8(d8,fb,fc,fs,Ac);
ss2=awgn(s2,i,'measured');ss3=
www.eeworm.com/read/248638/12549684
m m1_func.m
function M1=M1_func(s)
h=hilbert(s);
a1=A_func(h);
M1=M_func(a1);
www.eeworm.com/read/134893/13972016
m nnd12m.m
function nnd12m(cmd,arg1)
%NND12M Marquardt backpropagation demonstration.
%
% This demonstration requires the Neural Network Toolbox.
% First Version, 8-31-95.
%=============================
www.eeworm.com/read/133875/14019261
m my_yprime_m.m
function yp = yprime(t,y)
% Differential equation system for restricted three body problem.
% Think of a small third body in orbit about the earth and moon.
% The coordinate system moves with the e
www.eeworm.com/read/200258/15436074
m huber_m_nlos.m
% NLOS mitigation based on Huber M estimation
% 2007.3.18
% written by Tang Hong
% IEEE Trans. On signal processing,vol47,No.4, 1999
% " robust Huber adaptive filter"
clc;
clear;
www.eeworm.com/read/200131/15440356
m my_yprime_m.m
function yp = yprime(t,y)
% Differential equation system for restricted three body problem.
% Think of a small third body in orbit about the earth and moon.
% The coordinate system moves with the e
www.eeworm.com/read/103618/15727515
m my_yprime_m.m
function yp = yprime(t,y)
% Differential equation system for restricted three body problem.
% Think of a small third body in orbit about the earth and moon.
% The coordinate system moves with the e
www.eeworm.com/read/390512/8461865
m 作业.m
% File c7_Jakes.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wirele
www.eeworm.com/read/388485/8606542
m a.m
clc
clear
gama=[0.1,0.4,0.7,1,1.5,2.0];
for j=1:5
N=10000;
r(1,N)=0;
d1=0;
d0=0;
for i=1:N
t=0:199;
s=[(0:50)/50,(100-(51:150))/50,((151:199)-200)/50];
sigama=25;
mu=0;
x =mu+ randn(1,2
www.eeworm.com/read/431675/8661915
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