cp0201_repcode.m

来自「matlab仿真,超宽带信号中,等概率二进制产生,重复码编码,th编码,PPM-」· M 代码 · 共 26 行

M
26
字号
%
% FUNCTION 2.2 : "cp0201_repcode"
%
% Introduces a repetition code for the stream of 'bits' in
%  input:
% 'Ns' identical binary values are generated from the same
%  bit
% 'repbits' represents the output binary sequence
%
% Programmed by Guerino Giancola
%

function [repbits]=cp0201_repcode(bits,Ns)

% ----------------------------------------------
% Step One - Introduction of the repetition code
% ----------------------------------------------

numbits = length(bits);

temprect=ones(1,Ns);
temp1=zeros(1,numbits*Ns);
temp1(1:Ns:1+Ns*(numbits-1))=bits;
temp2=conv(temp1,temprect);
repbits=temp2(1:Ns*numbits);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?