代码搜索:参数速查
找到约 10,000 项符合「参数速查」的源代码
代码结果 10,000
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
www.eeworm.com/read/489816/6461852
m program_15_01.m
% 对于H = 0.3和H = 0.7,产生FBM
% 初始化randn发生器
randn('state',1)
% 设置参数H和采样长度
H = 0.3; lg = 1000;
% 产生并画出基于小波的FBM,H = 0.3
subplot(211)
fBm03 = wfbm(H,lg,'plot');
% 重设randn发生器和参数H
randn('state',1); H