代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292248/8365619
m gen_sourcebits.m
function info_bits=gen_sourcebits(sim);
%Acorrding to sim,
%generate certain numbers of random bits
%
%
Nd=sim.frame_data_len;
if sim.tx_num==1,
total_symbols = round((Nd * sim.frame_num));
www.eeworm.com/read/292248/8365620
m chk_comm_toolbox.m
function err=chk_comm_toolbox;
err=0;
a=ver;
comm_version=0;
for ic=1:size(a, 2),
if (strcmp(a(ic).Name, 'Communications Toolbox')),
comm_version=str2num(a(ic).Version);
%
www.eeworm.com/read/292248/8365621
m set_comm_parameters.m
function sim=set_comm_parameters(sim);
%set comm_parameters for a group of packets.
sim.sampling_rate=192000;
sim.carrier_freq=12000;
sim.symbol_rate=2000;
sim.bandwidth=6000;
sim.blank_time=2
www.eeworm.com/read/192685/8365622
txt 如何断开拨号网络.txt
要 想 控 制 拨 号 网 络 , 就 要 使 用 Remote Access Service (RAS) API, 这 个 API最 早 是 在 Windows for Workgroup 3.11中 出 现 的 , 现 在 它 已 经 成 为 Win32 API的 一 个 组 成 部 分 。 挂 断 拨 号 网 络 的 函 数 叫 RasHangUp, 这 个 函 数 的 功 能 和 用 法
www.eeworm.com/read/292248/8365623
m co4.m
function [st, st_rate]=co4(x1, x2, x3);
%Get the complex orthogonal matrix.
%x1, x2, x3 can be vectors.
if nargin~=3,
disp('[co4]Error: Three inputs are required.');
return;
end
if size(x
www.eeworm.com/read/292248/8365624
m puncture.m
function outbits=puncture(inbits, punct_vec);
%
%Puncture the parity bits via punct_vec.
%
%
punct_blen=length(punct_vec);
%zero-padding
tval=mod(length(inbits), punct_blen);
if tval,
i
www.eeworm.com/read/192685/8365625
txt 编ftp软件如何知道它传输文件时的速度.txt
你 可 以 在 下 载 开 始 时 计 时 , 然 后 根 据 下 载 的 字 节 数 计 算 出 下 载 速 度 。
www.eeworm.com/read/392057/8365626
ppt 信号分析与处理(shuangyu).ppt
www.eeworm.com/read/292248/8365627
m ieee802_15_3_tcm_code.m
function trellis=ieee802_15_3_tcm_code(mapping_type);
%This program generate TCM specified in
%IEEE 802.15.3-2003 standard.
%See page 250.
%
%info is the input binary input.
%tcm_output is the o
www.eeworm.com/read/192685/8365628
txt 如何下载internet上某个站点的所有内容.txt
WebZip和 类 似 的 工 具 的 工 作 原 理 都 是 从 你 指 定 的 页 面 开 始 下 载 。 下 载 后 对 HTML文 本 进 行 搜 索 , 查 找 其 中 的 链 接 , , 然 后 一 级 一 级 地 往 下 下 载 。 你 可 以 在 http://codeguru.developer.com/internet/Spider