代码搜索:零序保护
找到约 10,000 项符合「零序保护」的源代码
代码结果 10,000
www.eeworm.com/read/457708/1595026
m ex050700.m
% 第五章: 例 5.7:填补零点的实例
%
subplot(1,1,1);
x = [1,1,1,1];
%
% a) DTFT
w = [0:1:500]*2*pi/500;
[H] = freqz(x,1,w);
magH = abs(H); phaH = angle(H); phaH(126)=-47.5841*pi/180;
%
% b) 8-point DFT
N
www.eeworm.com/read/229453/4755771
c uart.c
#include
#include "UART.h"
void Init_CLK(void)
{
unsigned int i;
BCSCTL1 = 0X00; //将寄存器的内容清零
//XT2震荡器开启
//LFTX1工作在低频模式
//ACLK的分频因子为1
do
www.eeworm.com/read/229453/4755788
c uart.c
#include
#include "UART.h"
void Init_CLK(void)
{
unsigned int i;
BCSCTL1 = 0X00; //将寄存器的内容清零
//XT2震荡器开启
//LFTX1工作在低频模式
//ACLK的分频因子为1
do
www.eeworm.com/read/341597/3248025
m ex050700.m
% 第五章: 例 5.7:填补零点的实例
%
subplot(1,1,1);
x = [1,1,1,1];
%
% a) DTFT
w = [0:1:500]*2*pi/500;
[H] = freqz(x,1,w);
magH = abs(H); phaH = angle(H); phaH(126)=-47.5841*pi/180;
%
% b) 8-point DFT
N
www.eeworm.com/read/318233/3571026
m program_13_05.m
% 当前的延拓模式是补零
% 产生高斯白噪声
init = 2055415866; randn('seed',init);
x = randn(1,1000);
% 寻找各个阈值选择规则的阈值
% 使用SURE的自适应阈值
thr1 = thselect(x,'rigrsure')
% 固定形式阈值
thr2 = thselect(x,'sqtwolog')
% 启发式阈值
www.eeworm.com/read/309828/3703746
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/309828/3703762
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/306303/3740553
txt 6256.txt
日月光华 -- Economics精华区文章阅读
--------------------------------------------------------------------------------
发信人: Hayek (花自飄零水自流~~獨醉千年), 信区: Economics
标 题: 经济学者林毅夫谈中国经济发展潜力
发信站: 日月光华站 (Tue Apr 17 1
www.eeworm.com/read/436051/1855279
asm lcd.asm
//==========================================说明=============================================
// DI/RS:IOB3 R/W:IOB4 E:IOB5 CS1:IOB6 CS2:IOB7
// CS1和CS2只能有一个为低
//程序规范:每个函数写数据前自己清零数
www.eeworm.com/read/378175/2689904
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)