代码搜索:demodulation
找到约 758 项符合「demodulation」的源代码
代码结果 758
www.eeworm.com/read/181307/9260050
m demodulation.m
function de=demodulation(fftin)
n=length(fftin);
fout=zeros(1,n);
for j=1:n/8
x=fftin(j*8-7:j*8);
fout(j*8-7:j*8)=fft(x,8);
end
de=zeros(1,n);
for j=1:n
if real(fout(j))>=0&&imag(
www.eeworm.com/read/179989/9325431
m demodulation.m
function output_frame = demodulation(input_modu, index)
% demodulation for IEEE802.11a
% Input: input_modu, complex values representing constellation points
% index
% Output: output
www.eeworm.com/read/280545/10314013
m demodulation.m
function demod_out = demodulation(demod_in,mod_mode)
%%*************************************************************************
%%Function information:
%%由信道信号的复数值解调对应的二进制序列(In this program,the c
www.eeworm.com/read/354485/10350594
m demodulation.m
function demod_out = demodulation(demod_in,mod_mode)
%%*************************************************************************
%%Function information:
%%由信道信号的复数值解调对应的二进制序列(In this program,the c
www.eeworm.com/read/423402/10561781
m demodulation.m
function [soft_bits]=demodulation(rx_symbols,modulation,bit)
%***********************************************************************
% This file carries out 'slicing' operation to the nearest const
www.eeworm.com/read/423100/10587698
m demodulation.m
function y = demodulation(x,b,e,h)
% function y = demodulation(x,b,e,h)
% find the smybol in the defined modulation scheme map which has the minimum distance to the received symbol,
% output t
www.eeworm.com/read/418924/10891518
m demodulation.m
function output_frame = demodulation(input_modu, index)
% demodulation for IEEE802.11a
% Input: input_modu, complex values representing constellation points
% index
% Output: output
www.eeworm.com/read/418830/10894777
m demodulation.m
function output_frame = demodulation(input_modu, index)
% demodulation for IEEE802.11a
% Input: input_modu, complex values representing constellation points
% index
% Output: output
www.eeworm.com/read/271151/11005336
m demodulation.m
function demod_out = demodulation(demod_in,mod_mode)
%% 由信道信号的复数值找出对应的二进制序列。方法如下:由信道值,
%%求出该值与星座图中所有点的距离,找出距离最小的点,该点对应的
%%二进制序列及为该信道对应的解调结果。
%% Input:
%%--------------------------------------
www.eeworm.com/read/466057/7043702
asm demodulation.asm
;===================================
BSEG AT 0H
EXAM: DBIT 1
STARTWORK: DBIT 1
;==================================
CSEG AT 0H
LJMP START
;==================================
ORG 03H