代码搜索:参数辨识

找到约 10,000 项符合「参数辨识」的源代码

代码结果 10,000
www.eeworm.com/read/384096/8900117

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/384096/8900240

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/383376/8951560

c rank_sort.c

#include #include #include /* * 函数名: main * 功能: 主函数,实现枚举排序 * 输入:argc为命令行参数个数; * argv为每个命令行参数组成的字符串数组 * 输出:返回1代表程序正常结束 */ int main(int argc,char *ar
www.eeworm.com/read/284207/8954193

m 例程15-1.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
www.eeworm.com/read/185124/9056490

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/282790/9060281

m 例程15-1.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
www.eeworm.com/read/381647/9080013

cpp forward.cpp

/* ** File:forward.cpp ** 功能:给定观察值序列和HMM模型,利用前向算法求取其概率 */ #include"StdAfx.h" #include #include"hmm.h" /***函数名称:Forward **功能:后向算法估计参数 **参数:phmm:指向HMM的指针 ** T:观察值序列的长度 ** O:观察值序列
www.eeworm.com/read/380183/9158332

m mainpro_last1.m

%mainpro_last1 clear all; jpda_parameter;%参数设置,读取一些仿真参数 k=1; u_all=[]; u_input=[]; u_output=[]; input_mes=[]; z_save=[]; input_mes_total=linspace(0,0,M);%M=7,input_mes_total=[0 0 0 0 0 0 0]
www.eeworm.com/read/380183/9158395

asv mainpro_last1.asv

%mainpro_last1 clear all; jpda_parameter;%参数设置,读取一些仿真参数 k=1; u_all=[]; u_input=[]; u_output=[]; input_mes=[]; z_save=[]; input_mes_total=linspace(0,0,M);%M=7,input_mes_total=[0 0 0 0 0 0 0]
www.eeworm.com/read/181930/9224933

c rank_sort.c

#include #include #include /* * 函数名: main * 功能: 主函数,实现枚举排序 * 输入:argc为命令行参数个数; * argv为每个命令行参数组成的字符串数组 * 输出:返回1代表程序正常结束 */ int main(int argc,char *ar