代码搜索:型号参数
找到约 10,000 项符合「型号参数」的源代码
代码结果 10,000
www.eeworm.com/read/384096/8900182
m normalize_a.m
function [sig_output,mean_sig,w] = normalize_a(sig_input,a)
% 信号归一化到均值为 0,振幅为 a
% [sig_output] = normalize_sig(sig_input)
% 输入参数:sig_input 输入信号(可以批处理)
% 输出参数:sig_output 标准化的信号
[rows,cols] = s
www.eeworm.com/read/185150/9055266
cpp 7_5.cpp
//7_5.cpp
#include
using namespace std;
class B1 //基类B1,构造函数有参数
{
public:
B1(int i) {cout
www.eeworm.com/read/184790/9075558
txt 例9.6.txt
例9.6 对象数组的使用方法。
#include
using namespace std;
class Box
{public:
Box(int h=10,int w=12,int len=15): height(h),width(w),length(len){ }
//声明有默认参数的构造函数,用参数初始化表对数据成员初始化
int volume( );
p
www.eeworm.com/read/184790/9075581
txt 例9.3.txt
例9.3 在例9.2的基础上,定义两个构造函数,其中一个无参数,一个有参数。
#include
using namespace std;
class Box
{public:
Box( ); //声明一个无参的构造函数
Box(int h,int w,int len):height(h),wid
www.eeworm.com/read/379196/9204828
txt 例9.6.txt
例9.6 对象数组的使用方法。
#include
using namespace std;
class Box
{public:
Box(int h=10,int w=12,int len=15): height(h),width(w),length(len){ }
//声明有默认参数的构造函数,用参数初始化表对数据成员初始化
int volume( );
p
www.eeworm.com/read/379196/9204844
txt 例9.3.txt
例9.3 在例9.2的基础上,定义两个构造函数,其中一个无参数,一个有参数。
#include
using namespace std;
class Box
{public:
Box( ); //声明一个无参的构造函数
Box(int h,int w,int len):height(h),wid
www.eeworm.com/read/376332/9320515
txt matlab遗传算法工具箱函数及实例讲解(转引).txt
matlab遗传算法工具箱函数及实例讲解(转引)
核心函数:
(1)function [pop]=initializega(num,bounds,eevalFN,eevalOps,options)--初始种群的生成函数
【输出参数】
pop--生成的初始种群
【输入参数】
num--种群中的个体数目
bounds--代表变量的上下界的矩阵
eeva
www.eeworm.com/read/372577/9502944
asm drv77.asm
;********************DRV77********************
;本程序实现驱动TC77实现温度测量。
;入口参数:无。
;出口参数:13位的温度值在SOUH:SOU中(右对齐)。
;占用资源:W,STATUS,024H,025H,SSP模块,RB1,1重堆栈。
;说明: 同步时钟频率为FOSC/64。
www.eeworm.com/read/372577/9502946
asm dly5nu.asm
;********************DLY5NU********************
;本程序实现延时N*5(us)。
;入口参数:延时数N在SOU中。
;出口参数:按照要求CPU延时N*5(us)。
;占用资源:W,STATUS,024H,一重堆栈。
;说 明: 要求的CPU主频为4MHZ.
IFNDEF DLY5NU1