代码搜索:MODULATION
找到约 4,228 项符合「MODULATION」的源代码
代码结果 4,228
www.eeworm.com/read/466057/7043707
hex modulation.hex
:0300000002006B90
:03000B00020040B0
:10004000E893F590D804C28CD2003275A8827589E5
:1000500022758800759850758DE8758BE8758CE071
:10006000758AE0D28E75907FD20022114B3000FD50
:10007000C28C75907F75907F90
www.eeworm.com/read/466057/7043708
asm modulation.asm
BSEG AT 0H
FINISH: DBIT 1
;===========================
CSEG AT 0H
LJMP START
ORG 0BH
LJMP SINF
ORG 40H
SINF:
MOV A,R0
MOVC A,@A+DPTR
MOV P1,A
DJNZ R0,ENDSIN
CLR TR0
SETB
www.eeworm.com/read/465160/7059072
m modulation.m
function output_modu = modulation(input_frame, index)
% Input_modu: input bit stream (0,1)
% index: modulation index
% 1---bpsk
% 2---qpsk
% 4---16qam
% 6---64qam
% else is error
f_lengt
www.eeworm.com/read/464237/7167222
jpg modulation.jpg
www.eeworm.com/read/461773/7220744
m modulation.m
function [modu1]=modulation(frames1,frames2,tb,fs1,fs2)
runum1=length(frames1);
runum2=length(frames2);
t1=tb:tb:tb*runum1;
% t2=1:1:1*runum1;
cos1=cos(2*pi*fs2*t1);
frames1=frames1.*cos1;
sin1
www.eeworm.com/read/451448/7463636
m modulation.m
function X_map=modulation(X_interleave,N_BPSC)
%应用BITMAP这个函数,对多天线的bit信号进行映射
[row,column]=size(X_interleave);
for i=1:row
X_map(i,:)=BitMap(X_interleave(i,:),N_BPSC);
end
www.eeworm.com/read/448666/7527449
m modulation.m
function mod_out=modulation(mod_in,mod_mode)
%%*************************************************************************
%%Function information:
%%--------------------------------------------------
www.eeworm.com/read/436723/7763387
vhd modulation.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity modulation is
port(clk,start,x:in std_logic;
a:out std_logic;
y:out std_logic);
end mo
www.eeworm.com/read/399594/7845547
m modulation.m
function [output] = Modulation(input)
[K,D,N,G,N_t,N_r,L,C]= header;
power_d = 1;
len = length(input);
for k = 1:len/2,
tp = 2*input(1,2*k-1)+ 1*input(1,2*k);
if tp ==0,
%1+j
outpu
www.eeworm.com/read/199371/7863223