代码搜索:modulated
找到约 1,436 项符合「modulated」的源代码
代码结果 1,436
www.eeworm.com/read/101557/15826402
m lssb.m
% lssb.m
% Matlab demonstration script for LSSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;
www.eeworm.com/read/101557/15826403
m dsb1.m
% dsb1.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15;
www.eeworm.com/read/101557/15826405
m dsb_mod.m
function u=dsb_mod(m,ts,fc)
% u=dsb_mod(m,ts,fc)
%DSB_MOD takes signal m sampled at ts and carrier
% freq. fc as input and returns the DSB modulated
% signal. ts
www.eeworm.com/read/101557/15826411
m dsb2.m
% dsb2.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001; % sampling interval
fc=250; % ca
www.eeworm.com/read/101557/15826412
m fm2.m
% fm2.m
% Matlab demonstration script for frequency modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001;
www.eeworm.com/read/101557/15826419
m am.m
% am.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15; %
www.eeworm.com/read/388457/8608187
m p1_6.m
% Program P1_6
% Generation of amplitude modulated sequence
clf;
n = 0:100;
m = 0.4;fH = 0.1; fL = 0.01;
xH = sin(2*pi*fH*n);
xL = sin(2*pi*fL*n);
y = (1+m*xL).*xH;
stem(n,y);grid;
xlabe
www.eeworm.com/read/387887/8649607
m p1_6.m
% Program P1_6
% Generation of amplitude modulated sequence
clf;
n = 0:100;
m = 0.4;fH = 0.1; fL = 0.01;
xH = sin(2*pi*fH*n);
xL = sin(2*pi*fL*n);
y = (1+m*xL).*xH;
stem(n,y);grid;
xlabe
www.eeworm.com/read/386083/8765233
m comp_exam3_2.m
fs = 1000; % sampling frequency
delt = 1/fs; % sampling increment
t = 0:delt:1-delt; % time vector
npts = length(t); % number of points
fn = (0:(npts/2))*(fs/npts
www.eeworm.com/read/186987/8886251
m p1_6.m
% Program P1_6
% Generation of amplitude modulated sequence
clf;
n = 0:100;
m = 0.4;fH = 0.1; fL = 0.01;
xH = sin(2*pi*fH*n);
xL = sin(2*pi*fL*n);
y = (1+m*xL).*xH;
stem(n,y);grid;
xlabel('Time i