⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pol2bin.m

📁 Matlab communication toolbox.
💻 M
字号:
function [binary_sequence] = pol2bin(polar_sequence)

% POL2BIN .....	Polar to binary conversion
%
%	[B] = POL2BIN(P) converts the polar sequence P into a binary sequence
%		using the transformation:
%
%			 1 ----> 1
%			-1 ----> 0 
%

%	AUTHORS : M. Zeytinoglu & N. W. Ma
%             Department of Electrical & Computer Engineering
%             Ryerson Polytechnic University
%             Toronto, Ontario, CANADA
%
%	DATE    : August 1991.
%	VERSION : 1.0

%===========================================================================
% Modifications history:
% ----------------------
%	o	Tested (and modified) under MATLAB 4.0/4.1 08.16.1993 MZ
%===========================================================================

binary_sequence = ~( polar_sequence - ones(size(polar_sequence)) );

⌨️ 快捷键说明

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