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

📄 chongdiebaoliu.m

📁 用Matlab实现重叠保留法计算循环卷积的程序实例
💻 M
字号:
function y=chongdiebaoliu(h,x,N)
M=length(h);
x_l=length(x);
if M>x_l||M==x_l||N<M
    disp('ERROR!');
else
    N_ceil=ceil(x_l/(N-M+1));%ceil(A) rounds the elements of A to the nearest integers 
                             %greater than or equal to A. For complex A, 
                             %the imaginary and real parts are rounded independently.
    y0=[zeros(1,M-1),x,zeros(1,N*N)];
    y1=zeros(1,N);
    y=zeros(1,x_l+M-1);
    y_tem_0=zeros(1,N_ceil*(N-M+2));
    for i=1:N_ceil+N-1
        for j=1:N
            tem=(i-1)*(N-M+1)+j;
            y1(1,j)=y0(1,tem);
        end
        y_tem=circonv(h,y1,N);%进行环卷积运
        for j=1:N-M+1
            tem=(i-1)*(N-M+1)+j;
            y_tem_0(1,tem)=y_tem(1,j+M-1);
        end
    end
    for i=1:x_l+M-1
        y(1,i)=y_tem_0(1,i);
    end
end

⌨️ 快捷键说明

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