diffdecodevec.m

来自「Basic Differential Encoding/Decoding of 」· M 代码 · 共 39 行

M
39
字号
% % This is Differential Decoding function

% % INPUT/OUTPUT
% % vi: differentially encode input vector
% % vo: decoded ouput vecor

% % See also diffencodevec.m

function vo=diffdecodevec(vi)
[r c]=size(vi);

if r>1 && c>1
    error('input must be a vector');
end

vo=[];
if length(vi)==0
    return
end

vo(1)=vi(1);

for k=2:length(vi)
    vo(k)=vo(k-1)+vi(k);
end

if c==1 %vi row vector
    vo=vo'; %convert output to same type of vector
end

% %
% -------------------------------------------------------------------------
% % This program or any other program(s) supplied with it does not provide any
% % warranty direct or implied. This program is free to use/share for
% % non-commercial purpose only, for any other usage contact with author.
% % @ Copyright M Khan
% % Email: mak2000sw@yahoo.com
% % http://www.geocities.com/mak2000sw

⌨️ 快捷键说明

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