代码搜索:零序保护
找到约 10,000 项符合「零序保护」的源代码
代码结果 10,000
www.eeworm.com/read/231444/14233737
asm 8255.asm
ORG 0000H
LJMP MAIN
ORG 0030H
MAIN:
MOV R0,#7FH
ININ: MOV @R0,A
DEC R0
CJNE R0,#00H,ININ ;清零
KEYI: ACALL KSI
JNZ LK1
NI: ACALL DELAY
AJMP KEYI
LK1: ACALL DEL
www.eeworm.com/read/127962/14323955
c bo5-2.c
/* bo5-2.c 三元组稀疏矩阵的基本操作,包括算法5.1(9个) */
Status CreateSMatrix(TSMatrix *M)
{ /* 创建稀疏矩阵M */
int i,m,n;
ElemType e;
Status k;
printf("请输入矩阵的行数,列数,非零元素数:");
scanf("%d,%d,%d",&(*M).
www.eeworm.com/read/223033/14663456
m meshetc.m
clear
clc
[x,y,z] =peaks;
subplot(2,3,1);
meshz(x,y,z); %曲面加上围裙,即给出曲面和零平面
axis([-inf inf -inf inf -inf inf]);
subplot(2,3,2);
waterfall(x,y,z); %在x方向产生水流效果
axis([-inf inf -inf inf -inf inf])
www.eeworm.com/read/221223/14753095
m examp13_3.m
clc;
clear;
% 当前延拓模式时补零
% 产生高斯白噪声
init = 2055415866; randn('seed',init);
x = randn(1,1000);
% 寻找使用小波降噪输出的3个默认值
disp('小波降噪输出的3个默认值')
[thr,sorh,keepapp] = ddencmp('den','wv',x)
% 寻找使用
www.eeworm.com/read/116039/14991725
cpp p60_67.cpp
//Test is T60_67.cpp
#include
#include
const int maxLen = 128; //字符串的最大长度
class String {
//对象: 零个或多个字符的一个有限序列。
public:
String ( const String & ob); //复制构造函数, 由一个已有的字
www.eeworm.com/read/216262/15022666
m example2_11_1.m
x = [1 2 3] %原始信号
l = 2; %一维延拓长度
xextzpd1 = wextend('1','zpd',x,l) %一维零填充
xextzpd2 = wextend('1D','zpd',x,l,'b')
xextsym = wextend('1D','sym',x,l) % 一维对称延拓
xextper = wextend('1D','per',x,l)
www.eeworm.com/read/215911/15034256
m example2_11_1.m
x = [1 2 3] %原始信号
l = 2; %一维延拓长度
xextzpd1 = wextend('1','zpd',x,l) %一维零填充
xextzpd2 = wextend('1D','zpd',x,l,'b')
xextsym = wextend('1D','sym',x,l) % 一维对称延拓
xextper = wextend('1D','per',x,l)
www.eeworm.com/read/210114/15206415
m dnrz.m
%实验一:双极性不归零码的波形及功率谱密度
global dt df t f N
close all
N=2^13 % 采样点数
L=64 % 每码元的采样点数
M=N/L % 码元数
Rb=2 % 发送码元的信息速率:2Mbps
Ts=1/Rb % 码元宽度
www.eeworm.com/read/206115/15299727
c bo5-2.c
/* bo5-2.c 三元组稀疏矩阵的基本操作,包括算法5.1(9个) */
Status CreateSMatrix(TSMatrix *M)
{ /* 创建稀疏矩阵M */
int i,m,n;
ElemType e;
Status k;
printf("请输入矩阵的行数,列数,非零元素数:");
scanf("%d,%d,%d",&(*M).
www.eeworm.com/read/7326/115754
c uart.c
#include
#include "UART.h"
void Init_CLK(void)
{
unsigned int i;
BCSCTL1 = 0X00; //将寄存器的内容清零
//XT2震荡器开启
//LFTX1工作在低频模式
//ACLK的分频因子为1
do