代码搜索:零序保护
找到约 10,000 项符合「零序保护」的源代码
代码结果 10,000
www.eeworm.com/read/277525/10629740
cpp 十字链表相加.cpp
/*试按教科书5.3.2节中定义的十字链表存储表示编写将稀疏矩阵B加到稀疏A上的算法。*/
#include
#include
#include
#include
typedef int ElemType;
struct OLNode
{
int i,j; /*非零元所
www.eeworm.com/read/351570/10639473
cpp algo0504.cpp
Status CreateSMatrix_OL (CrossList &M) { // 算法5.4
// 创建稀疏矩阵M。采用十字链表存储表示。
// if (M) free(M);
// scanf(&m, &n, &t ); // 输入M的行数、列数和非零元个数
OLNode *p,*q;
int i,j,e;
int m=random(4,6), n
www.eeworm.com/read/349837/10797737
cpp algo0504.cpp
Status CreateSMatrix_OL (CrossList &M) { // 算法5.4
// 创建稀疏矩阵M。采用十字链表存储表示。
// if (M) free(M);
// scanf(&m, &n, &t ); // 输入M的行数、列数和非零元个数
OLNode *p,*q;
int i,j,e;
int m=random(4,6), n
www.eeworm.com/read/349384/10831465
asv five_features.asv
function feature_vector=five_features(Amplititude,Phase,Frequency)
feat
%提取零中心归一化瞬时幅度之谱密度的最大值garma_max
amp_mean=mean(Amplititude_2ask);
amp_cn=Amplititude_2ask/amp_mean-1;
garma_
www.eeworm.com/read/466716/7031770
c studentmanagersystem.c
#include "FuncDeclare.h"
#include "link.h"
#include "file.h"
int inforsave = 0;//全局变量,退出系统是如果有信息未保存,inforsave等于1,否则为零
int Sno_count = 10;//记录学生记录数目
student *head=NULL,*last=NULL;
//初始化学生数据
stud
www.eeworm.com/read/191386/7068850
h rmb.h
#ifndef rmbH
#define rmbH
// for AnsiString def
// #include
// 数值转大写人民币函数
AnsiString NumToRMBStr(double val);
// 正整数字符串转汉字函数,不建议单独使用
// 输入字符串必须正整数,只允许前导空格(必须右对齐),不宜有前导零
// An
www.eeworm.com/read/274556/7127101
m e0605.m
x=-pi:pi/10:pi;xx=x+(x==0&x==pi&x==-pi)*eps;%补充真数为零的点
yy=log(abs(sin(xx)));plot(x,yy)
title('This is figure of the five example. '); %给图形加上标题
axis([-3.2 3.2 -45 0])
xlabel('x'),ylabel('yy');grid o
www.eeworm.com/read/461473/7226929
m mulaw_c.m
function [y] = mulaw_c(s,mu)
% mu-定律的压缩器
% -----------------
% [y] = mulaw_c(s,mu)
% y = 压缩了的输出信号
% s = -1 和 1之间的零均值归一化信号
% mu = 参数 mu
%
if mu == 0
y = s;
else
y = (log(1+mu*abs(s)
www.eeworm.com/read/455392/7372614
c 6_5.c
//将外部RAM中的前200个单元内容清零。
#include
unsigned char xdata DATA_BUFFER[200] _at_ 0x0000;//外部RAM,地址从0000H开始
unsigned char i;
main()
{
for (i=0;i
www.eeworm.com/read/454633/7386462
cpp algo0504.cpp
Status CreateSMatrix_OL (CrossList &M) { // 算法5.4
// 创建稀疏矩阵M。采用十字链表存储表示。
// if (M) free(M);
// scanf(&m, &n, &t ); // 输入M的行数、列数和非零元个数
OLNode *p,*q;
int i,j,e;
int m=random(4,6), n