代码搜索:谐波抑制
找到约 599 项符合「谐波抑制」的源代码
代码结果 599
www.eeworm.com/read/134069/14010903
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/132988/14063834
m addwindowdft.m
% AddWindowDFT
clear;
disp('用DFT对离散信号进行谱分析');
disp('通过选用不同的加窗函数来抑制信号截断造成的频谱泄漏');
Repeat = 1;
disp('输入信号x(n),n为下标');
n = input('n=');
L = length(n);
x = input('x=');
disp(sprintf('
www.eeworm.com/read/132862/14070563
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/113490/15454906
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/113028/15472718
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/109438/15557496
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/108190/15591278
txt 4-8.txt
/* 范例:4-8 */
#include
#include /* getche()定义在conio.h */
void main()
{
int a=1,b=2,c=3;
char name[20];
char ch;
/* 标识符*抑制取得数据 */
printf("请输入10 11 12 13 14Steven
www.eeworm.com/read/359475/10143825
c 430_contest.c
#include
#include
#ifndef __FFT_N
#define __FFT_N
#define FFT_N 128 //FFT序列总取样点数
#define FFT_M 7 //使2^FFT_M = FFT_N
#define HARM_M 64 //最高谐波次数
#endif
t
www.eeworm.com/read/284836/8889168
c qep.c
// 该程序用于测试TMS320LF240X的EVB模块的正交编码脉冲(QEP)电路,
#include "register.h"
// 初始化子程序
initial()
{
asm(" setc INTM"); // 禁止所有中断
asm(" setc SXM"); // 抑制符号位扩展
asm(" clrc OVM"); // 累加器中结果正
www.eeworm.com/read/350382/10746049
m 7-8.m
%例程7-8 自适应窄带干扰抑制
t=0:1/10:400;
s=sin(2*pi*t/10); %窄带干扰
x=awgn(s,15); %叠加宽带噪声
D=100; %延迟
r=[zeros(1,D),x];
x=[x zeros(1,D)];
%r经LMS自适应滤波
N=5;