代码搜索结果

找到约 8,364 项符合 N 的代码

ls-1-works

[ -n "$d" ] || d=.. ls -1 "$d" > logfile.gnu busybox ls -1 "$d" > logfile.bb cmp logfile.gnu logfile.bb

ls-h-works

[ -n "$d" ] || d=.. ls -h "$d" > logfile.gnu busybox ls -h "$d" > logfile.bb cmp logfile.gnu logfile.bb

player.js

n=0; nw=100; imgpics=imgpics.split('|'); imglinks=imglinks.split('|'); imgtexts=imgtexts.split('|'); document.write( '' + '#player{ margin: 14px auto 3px; width:200px

loopy_dbn1.m

N = 1; % single chain = HMM - should give exact answers Q = 2; rand('state', 0); randn('state', 0); discrete = 1; if discrete Y = 2; % size of output alphabet else Y = 1; end coupled = 1; bnet =

online2.m

N = 1; % regular HMM Q = 2; ss = 2; hnodes = 1; onodes = 2; rand('state', 0); randn('state', 0); O = 2; discrete_obs = 1; bnet = mk_chmm(N, Q, O, discrete_obs); ns = bnet.node_sizes_slice; engine =

loopy_dbn1.m

N = 1; % single chain = HMM - should give exact answers Q = 2; rand('state', 0); randn('state', 0); discrete = 1; if discrete Y = 2; % size of output alphabet else Y = 1; end coupled = 1; bnet =

online2.m

N = 1; % regular HMM Q = 2; ss = 2; hnodes = 1; onodes = 2; rand('state', 0); randn('state', 0); O = 2; discrete_obs = 1; bnet = mk_chmm(N, Q, O, discrete_obs); ns = bnet.node_sizes_slice; engine =

fft_ideal_signal_sample_pulse.m

n=0:50; %定义序列的长度是50 A=444.128; %设置信号有关的参数 a=50*sqrt(2.0)*pi; T=0.001; %采样率 w0=50*sqrt(2.0)*pi; x=A*exp(-a*n*T).*sin(w0*n*T); %pi是MATLAB定义的π,信号乘可采用“.*” close all %清除已经绘制的x(n)图形 subplot(3,1,1);st

ideal_signal_sample_pulse.m

n=0:50; %定义序列的长度是50 A=444.128; %设置信号有关的参数 a=50*sqrt(2.0)*pi; T=0.001; %采样率 w0=50*sqrt(2.0)*pi; x=A*exp(-a*n*T).*sin(w0*n*T); %pi是MATLAB定义的π,信号乘可采用“.*” close all %清除已经绘制的x(n)图形 subplot(3,1,1);st

change_parameter_ideal_signal_sample_pulse.m

n=0:50; %定义序列的长度是50 A=1; %设置信号有关的参数 a=0.4; T=1; %采样率 w0=2.0374; x=A*exp(-a*n*T).*sin(w0*n*T); %pi是MATLAB定义的π,信号乘可采用“.*” close all %清除已经绘制的x(n)图形 subplot(3,1,1);stem(x); %绘制x(n)的图形 title('理想信号采