代码搜索:参数辨识

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

代码结果 10,000
www.eeworm.com/read/229151/14351211

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/225143/14554990

h define.h

//define.h //定义eeprom空间分配和读写操作 #include #include #include #include //基本参数段起始地址 //基本参数按照TBasicPara中所定义的顺序存储 //每一项的数据长度等于T
www.eeworm.com/read/224905/14564095

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/224905/14564106

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/224905/14564170

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/221894/14715707

cpp 7_4.cpp

#include class B1 //基类B1,构造函数有参数 { public: B1(int i) {cout
www.eeworm.com/read/221223/14753044

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/220323/14842341

asm c_asm31.asm

; ?DT?_AsmFunc1?C_ASM31 segment data overlayable ; 通过寄存器传递参数,不需要声明数据段 ?DT?_AsmFunc2?C_ASM31 segment data overlayable ; 通过存储器传递参数,需要声明数据段 ; ?DT?_AsmFunc3?C_ASM31 segment data overlayable ; 通过寄存器
www.eeworm.com/read/220323/14842352

asm c_asm31.asm

; ?DT?_AsmFunc1?C_ASM31 segment data overlayable ; 通过寄存器传递参数,不需要声明数据段 ?DT?_AsmFunc2?C_ASM31 segment data overlayable ; 通过存储器传递参数,需要声明数据段 ; ?DT?_AsmFunc3?C_ASM31 segment data overlayable ; 通过寄存器
www.eeworm.com/read/118454/14869491

prg test_proc.prg

********自定义函数JC()用于计算阶乘 FUNCTION jc PARAMETERS num &&传递一个数值参数num,返回num的阶乘 s=1 FOR n =1 TO num s=s*n ENDFOR RETURN s ********自定义函数LJH()用于计算累加和 FUNCTION ljh PARAMETERS num &&传递一个数值参数n