代码搜索:波形合成

找到约 3,528 项符合「波形合成」的源代码

代码结果 3,528
www.eeworm.com/read/244534/12857947

asm sanjiao.asm

;此程序为产生连续两个幅度不一样的三角波 ;DACO输出波形啊 .include "F2407REGS.H" ;引用头部文件 .def _c_int0 .bss DAC0_VAL,1 .bss DAC1_VAL,1 .bss DAC2_VAL,1 .bss DAC3_VAL,1 .bss
www.eeworm.com/read/140419/13082138

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/313008/13598766

m music.m

clear; snr=3; %信噪比 se1=1; %选择输入信号的波形 ta=[5,15,35,80]*pi/180; %入射信号角度 ma=12; %天线阵元个数 dbc=0.5; %阵元间距d与信号波长之间的比值 F=1.8e9; %信号频率 f=[F,F,F,F]; t_max=3.1
www.eeworm.com/read/309991/13660950

m 数字信号发生器.m

%Auther:杨登锋 %Date:3/26/2008 %Describtion:产生单极性或双极性归零码或不归零码,并显示其波形及频谱 global dt df t f N close all disp('请选择模式:'); %输出提示信息 disp('1.单极性不归零码,'); disp('2.双极性不归零码,'); disp
www.eeworm.com/read/358610/6282225

txt readme.txt

支持 复制/剪切/删除/粘贴 操作 支持 SP/SPS/SSP/SPSP 播放模式 可把选定的音频数据独立保存为文件. 可 快/慢速播放 显示波形. 可录音. 源程序中要用到三方控件.在压缩包中,我压缩了一些三方控件. 还有LMD控件包没有打包进来.
www.eeworm.com/read/389762/6344107

m binarymod.m

%OOK,2PSK, clear all; close all; A=1; fc=2; N_sample=8;%每个码元的抽样点数 N=500;%码元数 Ts=1; dt=Ts/fc/N_sample;%波形采样间隔 t=0:dt:N*Ts-dt; Lt=length(t); %产生二进制信源 d=sign(randn(1,N)); dd=sigexpand((d+1)
www.eeworm.com/read/489816/6461802

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/484980/6569774

m 2psk.m

%2PSK clear all; close all; A=1; fc=3; %3Hz N_sample=8; %取样数 N=500; %码元数 Ts=1; %1Baud/s dt=Ts/fc/N_sample; %波形采样间隔 t=0:dt:N*Ts-dt; Lt=length(t); %产生二进制信源 d=sign(randn(1,N)); dd=sige
www.eeworm.com/read/262549/11586972

m vsfz.m

clc clear all close all %二维矢量水听器,平面波条件,p(t)=x(t) vx(t)=cos(thetas)*x(t) vy(t)=sin(thetas)*x(t)%x(t) thetas=0:0.1:2*pi; %为声压波形, thetas为声传播的水平方位角%上式中,某一时刻
www.eeworm.com/read/156378/11807428

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