📄 diffencodevec.m
字号:
% % This is Differential Encoding function
% % INPUT/OUTPUT
% % vi: input vector
% % vo: differentially encoded ouput vector
% % See also diffdecodevec.m
function vo=diffencodevec(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=linspace(0,0,length(vi+1));
vo(1)=vi(1);
vo(2:end)=vi(2:end)-vi(1:end-1);
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -