代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/477959/6726639
pdf matlab15.pdf
www.eeworm.com/read/477959/6726801
pdf matlab16.pdf
www.eeworm.com/read/477959/6726802
pdf matlab15.pdf
www.eeworm.com/read/477218/6740165
ppt matlab11.ppt
www.eeworm.com/read/476099/6762863
pdf matlab6.5.pdf
www.eeworm.com/read/265063/11284248
txt qam_matlab.txt
%数字通信QAM仿真
clear
%产生基带符号流
M=16; %进制 16QAM
N=40; %信源比特流长度,为保证对齐,选择是log2(M)的整倍数
bitstream=zeros(1,N);
symbolstream=zeros(1,N/log2(M));
for n1=1:N
bitstream(n1)=binornd(1,0.5,1,1)
www.eeworm.com/read/265053/11284424
txt huffman_matlab.txt
www.eeworm.com/read/410382/11288468
m matlab_project.m
% This MATLAB code is a basic simulator for a digital communication system
% It contains Pulse Position Modulation (PPM) and the students are required
% to include On-Off Keying (OOK), and Binary Ph
www.eeworm.com/read/409729/11315144