代码搜索:辅同步信号
找到约 10,000 项符合「辅同步信号」的源代码
代码结果 10,000
www.eeworm.com/read/362220/10012311
m program_12_05.m
% 当前延拓模式是补零
% 载入信号
load noisdopp; x = noisdopp;
figure(1); subplot(211);
plot(x); title('原始信号');
% 利用db1小波包在第3层对x进行分解,使用Shannon熵
t = wpdec(x,3,'db1','shannon');
% 画出小波包树
plot(t)
% 重构小波包结点(2,
www.eeworm.com/read/360193/10106763
m plot_2way.m
function plot_2way(x1,x2,len,t)
%绘制正交信号图
subplot(2,1,2);
plot((1:len)*t,x2(1:len));
axis([0 len*t -4 4]);
hold on
plot((1:len)*t,x2(1:len),'.','color','red');
hold off
xlabel('虚部信号');
subplot
www.eeworm.com/read/360021/10111621
m untitled2.m
clear all;
% 构造三个不同频率的正弦信号的叠加作为试验信号
N=25;
f1=8;fs=32;
%%stepf=fs/N;
x=sin(2*pi*0.25*[0:N-1]);
subplot(2,1,1);
plot(x);
subplot(2,1,2);
plot(abs(fft(x,128)));
%axis([-512 512
www.eeworm.com/read/163721/10148171
asv stbc_decode24.asv
% demap_int = zeros(Tx_num,Ofdm_bits);
% stbc_code 为信源发送信号
% snr_db_step 当前信噪比
% demap_int 译码得到的信号表的索引号
function [decode_out,demap_int] = stbc_decode(stbc_code,snr_db_step);
global table16 tabl
www.eeworm.com/read/163721/10148175
m stbc_decode24.m
% demap_int = zeros(Tx_num,Ofdm_bits);
% stbc_code 为信源发送信号
% snr_db_step 当前信噪比
% demap_int 译码得到的信号表的索引号
function [decode_out,demap_int] = stbc_decode(stbc_code,snr_db_step);
global table16 tabl
www.eeworm.com/read/163721/10148215
asv stbc_decode24.asv
% demap_int = zeros(Tx_num,Ofdm_bits);
% stbc_code 为信源发送信号
% snr_db_step 当前信噪比
% demap_int 译码得到的信号表的索引号
function [decode_out,demap_int] = stbc_decode(stbc_code,snr_db_step);
global table16 tabl
www.eeworm.com/read/163721/10148217
m stbc_decode22.m
% demap_int = zeros(Tx_num,Ofdm_bits);
% stbc_code 为信源发送信号
% snr_db_step 当前信噪比
% demap_int 译码得到的信号表的索引号
function [decode_out,demap_int] = stbc_decode22(rec_code,ch_mul_noice,snr_db_step);
globa
www.eeworm.com/read/358376/10190105
m costas.m
fs = 12e6; %采样频率
ts = 1/fs;
num = 2.5e6; %数据长度
SNR = -15;
real_fc = 3563000; %实信号频率
data = sin(2*pi*real_fc*(0:num-1)*ts+pi/4)+sqrt(10^(SNR/10))*randn(1,num); %科斯塔斯环的输入信号
fc = 3562800; %本地频率
www.eeworm.com/read/357662/10203375
m 例程16-3.m
%生成正弦信号
N=1000;
t=1:N;
sig1=sin(0.3*t);
%生成三角波信号
sig2(1:500)=((1:500)-1)/500;
sig2(501:N)=(1000-(501:1000))/500;
figure(1);
subplot(2,1,1);plot(t,sig1,'LineWidth',2);xlabel('时间 t/s');ylabel('幅
www.eeworm.com/read/357662/10203382
m 例程16-4.m
%生成正弦信号
N=1000;
t=1:N;
sig1=sin(0.3*t);
%生成三角波信号
sig2(1:500)=((1:500)-1)/500;
sig2(501:N)=(1000-(501:1000))/500;
figure(1);
subplot(2,1,1);plot(t,sig1,'LineWidth',2);
xlabel('时间 t/s');ylabel(