代码搜索:参数对比
找到约 10,000 项符合「参数对比」的源代码
代码结果 10,000
www.eeworm.com/read/314707/13560588
m sui.m
clc
clear all;
N=10000;%独立随机数实现的数目
OR=20;%观察频率(Hz)
M=256;%多普勒滤波器的阶数
Dop_res=0.1;%SUI参数中的多普勒判决(Hz)(在重复采样进程中)
res_accu=20;%重复采样进程的精确度
%%%%%SUI信道参数%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
P=[0 -5 -1
www.eeworm.com/read/309669/13666641
m normalize_1.m
function [sig_output,mean_sig,w] = normalize_1(sig_input)
% 信号归一化到均值为 0,方差为 1
% [sig_output] = normalize_sig(sig_input)
% 输入参数:sig_input 输入信号(可以批处理)
% 输出参数:sig_output 标准化的信号
[rows,cols] = siz
www.eeworm.com/read/309669/13666646
m normalize_1.m
function [sig_output,mean_sig,w] = normalize_1(sig_input)
% 信号归一化到均值为 0,方差为 1
% [sig_output] = normalize_sig(sig_input)
% 输入参数:sig_input 输入信号(可以批处理)
% 输出参数:sig_output 标准化的信号
[rows,cols] = siz
www.eeworm.com/read/309669/13666684
m normalize_1.m
function [sig_output] = normalize_1(sig_input)
% 信号归一化到均值为 0,振幅为 1
% [sig_output] = normalize_sig(sig_input)
% 输入参数:sig_input 输入信号(可以批处理)
% 输出参数:sig_output 标准化的信号
[rows,cols] = size(sig_input
www.eeworm.com/read/308479/13700543
m ant_colony_system.m
%初始化
clear;
Alpha=1; %信息素重要程度的参数
Beta=5; %启发式因子重要程度的参数
Rho=0.95; %信息素蒸发系数
NC_max=200; %最大迭代次数
Q=100; %信息素增加强度系数
CityNum=30; %问题的规模(城市个数)
[dislist,Clist]=tsp(CityNum);
m=CityNum; %蚂蚁个数
Et
www.eeworm.com/read/307450/13722127
m normalize_1.m
function [sig_output] = normalize_1(sig_input)
% 信号归一化到均值为 0,振幅为 1
% [sig_output] = normalize_sig(sig_input)
% 输入参数:sig_input 输入信号(可以批处理)
% 输出参数:sig_output 标准化的信号
[rows,cols] = size(sig_input
www.eeworm.com/read/148611/5713619
asm duadd.asm
;********************DUADD********************
;本程序实现双字节无符号数加法。
;入口参数:被加数在SOUH:SOU中,加数在RLTH:RLT中。
;出口参数:结果在SOUH:SOU中,进位位在STATUS:C中。
;占用资源:W,024H,025H,026H,027H,一重堆栈。
IFNDEF DUA
www.eeworm.com/read/148611/5713633
asm scobcdsub.asm
;********************SCOBCDSUB********************
;本程序实现单字节压缩BCD码减法。
;入口参数:被减数在SOU中,减数在RLT中。
;出口参数:结果在SOU中,借位标志在STATUS:C中,'0'表示有借位。
;占用资源:W,STATUS,024H,026H,028H,一重堆栈。
IFNDEF
www.eeworm.com/read/210649/6285007
c rank_sort.c
#include
#include
#include
/*
* 函数名: main
* 功能: 主函数,实现枚举排序
* 输入:argc为命令行参数个数;
* argv为每个命令行参数组成的字符串数组
* 输出:返回1代表程序正常结束
*/
int main(int argc,char *ar
www.eeworm.com/read/385801/6307054
m lpf.m
function [t,st]=lpf(f,sf,B)
% 本函数为通带为B的低通滤波器
% 入口参数:f:频率样本向量
% sf:频谱向量
% B:低通滤波器带宽
% 出口参数:t:时间向量
% st:输出信号向量
df=f(2)-f(1);
T=1/df;
hf=zeros(1,length(f));
bf=[-f