代码搜索:波形合成
找到约 3,528 项符合「波形合成」的源代码
代码结果 3,528
www.eeworm.com/read/467254/7008310
txt pwmg.txt
#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long
#include
sbit P10=P1^0;//波形输出
//sbit K1=P3^0;//按键1,机器周期增大
//sbit K2=P3^1;//按键2,机器周期减小
//sbit K3=P3^2;/
www.eeworm.com/read/467254/7008452
c 30-14-6.c
#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long
#include
sbit P10=P1^0;//波形输出
//sbit K1=P3^0;//按键1,机器周期增大
//sbit K2=P3^1;//按键2,机器周期减小
//sbit K3=P3^2;/
www.eeworm.com/read/461172/7232432
m dm07202.m
%dm07202
%绘制实指数信号波形
syms a t
f=sym('exp(a*t)')
f1=subs(f,'a','-0.5')
subplot(2,3,1)
ezplot(f1,[-3,3])
f2=subs(f,'a','0.5')
subplot(2,3,2)
ezplot(f2,[-3,3])
f3=subs(f,'a','0')
subplot(2,3
www.eeworm.com/read/451247/7468630
txt power-spectrum.txt
连续信号的产生,其相关函数,及其功率谱:
题目:模拟连续独立信号。产生一段在[-1,+1]上均匀分布的独立随机信号,长度为0.5s。(1)绘制该段信号的波形;(2)求自相关函数;(3)计算其功率谱。
(假设我们只关注频率为500Hz以内的信号)
www.eeworm.com/read/327991/7532400
m program_16_01.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/447711/7546287
m program_16_01.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/439019/7718128
txt a.txt
# 以“#”号开始的行是注释
# 本文件描述逻辑电路的输入波形
Input
# 0(500), 0表示低电平,500表示持续时间500us
system.input1:0(500),1(400),0(100)
system.input2:1(100),0(300),1(600)
system.input3:1(300),0(400),1(300)
EndInput
www.eeworm.com/read/437996/7737921
txt the effect of implementation on wheels rolled from right to left .txt
12864液晶趣味显示:实现汽车轮子从右滚到左的效果
DDS中波形查找表的产生
#include "c8051f020.h"
#include
#define LCD_DATA P7
#define LCD_RS P10
#define LCD_RW P11
#define LCD_E P12
#def
www.eeworm.com/read/298014/7977534
m modusqu.m
%产生调幅、调频及调相波形
clf;
%format,compact,
t=0:0.001:1;
A0=10;w0=200;phi0=0;
x=A0*square(w0*t+phi0);
subplot(3,1,1),plot(t,x),hold
axis([0,1,-12,12])
xlabel('t'),ylabel('载波信号')
%输入信号参数
dA=5*sin(0.1
www.eeworm.com/read/197111/8028359
m examp16_1.m
clc;
clear;
%生成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 1