代码搜索:振荡调制

找到约 3,079 项符合「振荡调制」的源代码

代码结果 3,079
www.eeworm.com/read/375257/9367325

m f3_22.m

%线性调频信号 fm1=fmlin(256,0,0.5); %高斯幅值调制信号 am1=amgauss(256); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚部'); xl
www.eeworm.com/read/178744/9386540

m m_cov_cul01_module.m

%******** 1023点的2psk调制(f= %*********** 1023点m序列的产生 ****************% clear; clc; close all; k11=4 k21=9 N=9 number=2^N-1 b1=zeros(1,number+N); for i=1:N b1(i)=1; end a=zeros(1,number+
www.eeworm.com/read/365180/9875587

m loam.m

clear all;close all;clc;clf; t=0:0.001:2; dt=0.001; %定义t及抽样间隔 w=2*pi*2; n=2*pi*15; m=sin(w*t); %基带信号 p=cos(n*t); %载波信号 AM=cos(n*t)+m.*cos(n*t); %AM调制信号 subplot(211); plot(t,m);
www.eeworm.com/read/161995/10348558

m f3_22.m

%线性调频信号 fm1=fmlin(256,0,0.5); %高斯幅值调制信号 am1=amgauss(256); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚部'); xl
www.eeworm.com/read/161864/10359479

vhd pl_cpsk2.vhd

--文件名:PL_CPSK2 --功能:基于VHDL硬件描述语言,对CPSK调制的信号进行解调 --最后修改日期:2004.3.16 library ieee; use ieee.std_logic_arith.all; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity PL_CPSK2 is
www.eeworm.com/read/425287/10365654

m f3_22.m

%线性调频信号 fm1=fmlin(256,0,0.5); %高斯幅值调制信号 am1=amgauss(256); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚部'); xl
www.eeworm.com/read/160248/10549908

m f3_22.m

%线性调频信号 fm1=fmlin(256,0,0.5); %高斯幅值调制信号 am1=amgauss(256); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚部'); xl
www.eeworm.com/read/420655/10782741

m f3_22.m

%线性调频信号 fm1=fmlin(256,0,0.5); %高斯幅值调制信号 am1=amgauss(256); %合成 sig=am1.*fm1; %显示 %实部 plot(real(sig),'LineWidth',2); hold on; %虚部 plot(imag(sig),'ro--','LineWidth',2); legend('实部','虚部'); xl
www.eeworm.com/read/178607/7085981

m t.m

%——三种调制方式的功率谱密度比较 BPSK=out_sig; QPSK=out_symi+j*out_symq; QAM16=out_symii+j*out_symqq; F_BPSK=fftshift(fft(BPSK)); %——频谱对称平移 F_QPSK=fftshift(fft(QPSK)); %——频谱对称平移 F_QAM1
www.eeworm.com/read/178607/7085988

m exp4_2.m

%——三种调制方式的功率谱密度比较 juxing=out_symi0+j*out_symq0; sincf=out_symi1+j*out_symq1; raisef=out_symi2+j*out_symq2; F_juxing=fftshift(fft(juxing)); %——频谱对称平移 F_sinc=fftshift(fft(sincf));