makeunsampled.m

来自「This program is about coaxial sysytem of」· M 代码 · 共 14 行

M
14
字号
function out = MakeUnsampled(SampledSeq,SamplesPerBit,clipto)
if (clipto<1 || mod(clipto,SamplesPerBit)~=0),
    error('Error in Selecting Clipping Point')
end
SampledSeq = SampledSeq(1:clipto);
out = [];
n=length(SampledSeq(1,:));                  % Number of columns
for n1 = 1:n
    out1=[];
    for l = 1:SamplesPerBit:clipto
        out1=[out1,SampledSeq(l,n1)];
    end
    out = [out,out1'];
end

⌨️ 快捷键说明

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