代码搜索:波形合成
找到约 3,528 项符合「波形合成」的源代码
代码结果 3,528
www.eeworm.com/read/244534/12857991
asm adda7226.asm
;此程序为通过从DACO脚输出三角波 地址为0300H
;通过ADINO脚输入
;通过da转换输出DAC3脚 地址为0303H
;比较两个输出波形。通过EVA模块,定时器1
.include "F2407REGS.H" ;引用头部文件
.def _c_int0
;(1)建立中断向量表
www.eeworm.com/read/140420/13082134
m modulatep.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=100;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=0;
dw=0;
dphi=5*sin(0.1*w0*t);
www.eeworm.com/read/140418/13082142
m modulatef.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=100;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=0;
dw=5*sin(0.1*w0*t);
dphi=0;
www.eeworm.com/read/140417/13082150
m modulate.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=200;phi0=0;
x=A0*sin(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=5*sin(0.1*w0*t);
dw=0;
dphi=0;
www.eeworm.com/read/326278/13151321
txt dsp.txt
laobeixiaoli@163.com,您好!
是用fir4改的。
时钟100M,采样率100k
定时分频1000倍
最大频率fm=50k,输入波形10k+1k
5k转折点,则k/50k=0.1
15k转转折点则15k/50k=0.3
www.eeworm.com/read/323211/13347257
m ex0904.m
%例9.4门信号的波形及其频谱;
R=0.02;t=-2:R:2;
f=Heaviside(t+1)-Heaviside(t-1);
W1=2*pi*5;
N=500;k=0:N;W=k*W1/N;
F=f*exp(-j*t'*W)*R;
F=real(F);
W=[-fliplr(W),W(2:501)];
F=[fliplr(F),F(2:501)];
subplot(2,1
www.eeworm.com/read/308966/13685299
c signal_show.c
//波形显示在第一层,网格坐标显示在第二层,汉字菜单显示在第三层.
#include
#include
#include
#include "constant.h"
#include "iCf.h"
#include "rCf.h"
#include "ziku.h"
#include "f_define.h"//函数定义
www.eeworm.com/read/308966/13685302
c lcd.c
//波形显示在第一层,网格坐标显示在第二层,汉字菜单显示在第三层.
#include
#include
#include
#include "constant2.h"
//#include "iCf_2.h"
//#include "rCf_2.h"
//#include "ziku.h"
#include "F_DEFI
www.eeworm.com/read/308956/13686581
c dso_fft.c
//波形显示在第一层,网格坐标显示在第二层,汉字菜单显示在第三层.
#include
#include
#include
#include "constant.h"
#include "iCf.h"
#include "rCf.h"
#include "ziku.h"
#include "f_define.h"//函数定义
www.eeworm.com/read/150632/5689878
m ex020100.m
% Chapter 02: Example 02.01: Signal Synthesis
disp('例题2。1:画出以下各序列在给定区间的波形图')
disp('a. x(n)=2*delta(n+2)-delta(n-4). -5