代码搜索:demodu
找到约 71 项符合「demodu」的源代码
代码结果 71
www.eeworm.com/read/428096/8896007
m demodu_sym.m
function bit_out = demodu_sym(sym,mod_type)
% sym, 行向量
% bit, mod_type行的矩阵, length(sym)列的矩阵
% 大于0, 硬判决为比特1 ; 小于0 ,硬判决为比特0
bit_out = zeros(mod_type ,size(sym,2));
switch mod_type
www.eeworm.com/read/297788/7996581
m qpsk_demodu.m
%正交下变频+A/D模数变换,采用8倍采样fs=8fc
function [x,y]=QPSK_demodu(a)
recievdata=a;
Rb=800000;%码元速率819.2k
k=1; %一个码元间隔包括1个载波周期/2
k2=8;
fc=k*Rb; % 载波频率,
fs=fc*k2;
www.eeworm.com/read/363748/6288740
m demodu_sym.m
function bit_out = demodu_sym(sym,mod_type)
% sym, 行向量
% bit_out, mod_type行的矩阵, length(sym)列的矩阵
% 大于0, 硬判决为比特1 ; 小于0 ,硬判决为比特0
bit_out = zeros(mod_type ,size(sym,2));
switch mod_type
www.eeworm.com/read/488062/6495584
m qam_demodu.m
function out=QAM_demodu(in)
for i = 1:length(in)
Real = real(in(1,i));
Imag = imag(in(1,i));
if( abs((Real -1)) < abs((Real +1)))
out(1,2*i-1) = 1;
www.eeworm.com/read/408889/11366104
m demodu_sym.m
function bit_out = demodu_sym(sym,mod_type)
% sym, 行向量
% bit_out, mod_type行的矩阵, length(sym)列的矩阵
% 大于0, 硬判决为比特1 ; 小于0 ,硬判决为比特0
bit_out = zeros(mod_type ,size(sym,2));
switch mod_type
www.eeworm.com/read/222672/14680187
m demodu_sym.m
function bit_out = demodu_sym(sym,mod_type)
% sym, 行向量
% bit, mod_type行的矩阵, length(sym)列的矩阵
% 大于0, 硬判决为比特1 ; 小于0 ,硬判决为比特0
bit_out = zeros(mod_type ,size(sym,2));
switch mod_type
www.eeworm.com/read/379099/9207825
m demodu_16qam.m
function output=demodu_16qam(input)
%16QAM demodulation
output=zeros(1,length(input)*4);
QAM_I=real(input)*sqrt(10);
QAM_Q=imag(input)*sqrt(10);
QAM_16_IQ=[3 2 0 1];
idx=find(QAM_I>3)
www.eeworm.com/read/277448/10638229
m demodu_16qam.m
function output=demodu_16qam(input)
%16QAM demodulation
output=zeros(1,length(input)*4);
QAM_I=real(input)*sqrt(10);
QAM_Q=imag(input)*sqrt(10);
QAM_16_IQ=[3 2 0 1];
idx=find(QAM_I>3)
www.eeworm.com/read/302940/7148424
m demodu_16qam.m
function output=demodu_16qam(input)
%16QAM demodulation
output=zeros(1,length(input)*4);
QAM_I=real(input)*sqrt(10);
QAM_Q=imag(input)*sqrt(10);
QAM_16_IQ=[3 2 0 1];
idx=find(QAM_I>3)
www.eeworm.com/read/460180/7256365
m demodu_16qam.m
function output=demodu_16qam(input)
%16QAM demodulation
output=zeros(1,length(input)*4);
QAM_I=real(input)*sqrt(10);
QAM_Q=imag(input)*sqrt(10);
QAM_16_IQ=[3 2 0 1];
idx=find(QAM_I>3)