代码搜索:波形合成
找到约 3,528 项符合「波形合成」的源代码
代码结果 3,528
www.eeworm.com/read/291730/8401704
m 16-1.m
%生成3个正弦信号
N=1024;
t=1:N;
x1=sin(3*t);
x2=sin(0.3*t);
x3=sin(0.03*t);
%绘制其波形
figure(1);
subplot(3,1,1);plot(t,x1,'LineWidth',2);
xlabel('时间 t/s');ylabel('(sig1)幅值 A');
axis([0 1200 -2 2]);
s
www.eeworm.com/read/187659/8612251
m untitled.m
t=80;%定义时间长度为60
y=1;%定义列数为1
msg = randint(t,y);%产生二进制基带信号msg
for i=1:5 % 定义 i
no=awgn(msg,snr(i));
no=y>5;
plot(y);
title('随机产生二进制数字基带信号码元');%画出波形图并命名
end
www.eeworm.com/read/430254/8758949
m a_d_1.m
function [sampl,quant,pcm]=a_d_1(A,F,P,D)
%单频正弦波模拟信号的抽样实现%
Fs=20*F;
t=0:1/Fs:2/F;
samp=A*sin(2*pi*F*t+P);
figure(1)
plot(t,samp);
title('正弦波信号波形图');
xlabel('时间');ylabel('幅度');
grid on
%单频正弦波
www.eeworm.com/read/385245/8812314
asm m62429asm.asm
M62429音量控制芯片的编程问题
我写了个用串口控制80C51控制M62429音量的程序,但无反应,波形都对啊,请大虾帮帮忙!!!
;;;;;;;;;;;;;;;;;;;;;M62429控制程序;;;;;;;;;;;;;;;
M62429_DATA EQU P1.0
M62429_CLK EQU P1.1
www.eeworm.com/read/284781/8898879
m 例程16-1.m
%生成3个正弦信号
N=1024;
t=1:N;
x1=sin(3*t);
x2=sin(0.3*t);
x3=sin(0.03*t);
%绘制其波形
figure(1);
subplot(3,1,1);plot(t,x1,'LineWidth',2);
xlabel('时间 t/s');ylabel('(sig1)幅值 A');
axis([0 1200 -2 2]);
s
www.eeworm.com/read/284207/8953807
m 例程16-1.m
%生成3个正弦信号
N=1024;
t=1:N;
x1=sin(3*t);
x2=sin(0.3*t);
x3=sin(0.03*t);
%绘制其波形
figure(1);
subplot(3,1,1);plot(t,x1,'LineWidth',2);
xlabel('时间 t/s');ylabel('(sig1)幅值 A');
axis([0 1200 -2 2]);
s
www.eeworm.com/read/282790/9060021
m 例程16-1.m
%生成3个正弦信号
N=1024;
t=1:N;
x1=sin(3*t);
x2=sin(0.3*t);
x3=sin(0.03*t);
%绘制其波形
figure(1);
subplot(3,1,1);plot(t,x1,'LineWidth',2);
xlabel('时间 t/s');ylabel('(sig1)幅值 A');
axis([0 1200 -2 2]);
s
www.eeworm.com/read/377025/9297134
m fbh.m
fs=100;%设定采样频率
N=16;
n=0:N-1;
t=n/fs;
f0=10;%设定方波信号频率
%生成方波信号
x=square(2*pi*f0*t);
figure(1);
subplot(221);
stem(t,x);%作方波信号的时域波形
xlabel('t');
ylabel('y');
axis([0 0.2 -1 1]);
title('10hz
www.eeworm.com/read/176687/9487730
bak news5f.v.bak
//实验名称 新5分频之2:3波形产生
//文件名 news5f.v
//日期 2006-6-25
/*定义模块*/
module S5F32 (clk,rst,clk_32);
input clk,rst;
output clk_32;
reg clk_32;
reg [2:0] count1;
always@( posedge clk or negedge rst)
if ( !r
www.eeworm.com/read/176687/9487750
v news5f.v
//实验名称 新5分频之2:3波形产生
//文件名 news5f.v
//日期 2006-6-25
/*定义模块*/
module S5F32 (clk,rst,clk_32);
input clk,rst;
output clk_32;
reg clk_32;
reg [2:0] count1;
always@( posedge clk or negedge rst)
if ( !r